[ovs-dev] [PATCH] Vagrantfile: Update to Fedora 22 base box

2015-11-24 Thread Mark D. Gray
Fedora 20 base box is no longer available at chef/fedora20. Signed-off-by: Mark D. Gray <mark.d.g...@intel.com> --- Vagrantfile | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e8c104d..102a17d 100644 --- a/Vagrantfile

Re: [ovs-dev] Status of Open vSwitch with DPDK

2015-08-17 Thread Mark D. Gray
On 08/15/15 08:16, Flavio Leitner wrote: On Fri, Aug 14, 2015 at 04:04:40PM +, Gray, Mark D wrote: Hi Daniele, Thanks for starting this conversation. It is a good list :) I have crossed-posted this to dpdk.org as I feel that some of the points could be interesting to that community as

[ovs-dev] docs: Fix alignment for diagram in native-tunneling.md

2015-06-17 Thread Mark D. Gray
Markdown was not formatted correctly and, as a result, was displaying incorrectly on github. Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- README-native-tunneling.md | 35 +-- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/README-native

[ovs-dev] [PATCH v2] dpif-netdev: Fix non-pmd thread queue id.

2015-05-29 Thread Mark D. Gray
threads use queue 0, pmd threads on core 0 to N use queues 1 to N+1 Fixes: d5c199ea7ff7 (netdev-dpdk: Properly support non pmd threads.) Reported-by: 차은호 eunho@atto-research.com Signed-off-by: Daniele Di Proietto diproiet...@vmware.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib

Re: [ovs-dev] [PATCH RFC 0/1] dpif-netdev: Make EMC Size Configurable

2015-04-23 Thread Mark D. Gray
On 04/22/15 22:18, Jesse Gross wrote: On Wed, Apr 22, 2015 at 1:15 AM, mark.d.graymark.d.g...@intel.com wrote: Pravin Shelar wrote: On Tue, Apr 21, 2015 at 7:30 PM, Jesse Grossje...@nicira.com wrote: On Tue, Apr 21, 2015 at 7:23 PM, Pravin Shelarpshe...@nicira.com wrote: On Tue, Apr 21,

Re: [ovs-dev] [PATCH RFC 0/1] dpif-netdev: Make EMC Size Configurable

2015-04-23 Thread Mark D. Gray
On 04/23/15 09:19, Mark D. Gray wrote: On 04/22/15 22:18, Jesse Gross wrote: On Wed, Apr 22, 2015 at 1:15 AM, mark.d.graymark.d.g...@intel.com wrote: Pravin Shelar wrote: On Tue, Apr 21, 2015 at 7:30 PM, Jesse Grossje...@nicira.com wrote: On Tue, Apr 21, 2015 at 7:23 PM, Pravin Shelarpshe

Re: [ovs-dev] [PATCH v2 1/1] netdev-dpdk: Reset RSS hash on transmit

2015-04-22 Thread Mark D. Gray
On 04/14/15 10:21, Gray, Mark D wrote: Acked-by: Daniele Di Proiettodiproiet...@vmware.com Pravin would you mind applying the patch (if you don’t see anything wrong with it), with the minor style fix below? [Gray, Mark D] Fixed that at

[ovs-dev] [PATCH v3 1/1] netdev-dpdk: Reset RSS hash on transmit

2015-04-14 Thread Mark D. Gray
modified by the consumer of a DPDK ring Reviewed-by: Daniele Di Proietto diproiet...@vmware.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib/netdev-dpdk.c | 34 ++ 1 files changed, 22 insertions(+), 12 deletions(-) diff --git a/lib/netdev-dpdk.c b/lib

[ovs-dev] [PATCH v2 1/1] netdev-dpdk: Reset RSS hash on transmit

2015-04-13 Thread Mark D. Gray
modified by the consumer of a DPDK ring Reviewed-by: Daniele Di Proietto diproiet...@vmware.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib/netdev-dpdk.c | 33 + 1 files changed, 21 insertions(+), 12 deletions(-) diff --git a/lib/netdev-dpdk.c b/lib

[ovs-dev] [PATCH 2/3] vswitch.ovschema: Update schema to add new columns

2015-03-06 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com datapath_types and port_types columns will allow an ovsdb client to determine the available datapath and port types on this instance of ovs-vswitchd Signed-off-by: Mark D. Gray mark.d.g...@intel.com Signed-off-by: Billy O'Mahony billy.o.mah...@intel.com

[ovs-dev] [PATCH 3/3] bridge: Update bridge to discover datapath and port types

2015-03-06 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com This patch enumerates datapath and port types and adds this information to the datapath_types and port_types columns in the ovsdb. This allows an ovsdb client to query the datapath in order to determine if certain datapath and port types exist

[ovs-dev] [PATCH 1/3] Update some comments

2015-03-06 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib/dpif-netdev.c | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/lib/dpif-netdev.c b/lib/dpif-netdev.c index f01fecb..a0a0590 100644 --- a/lib/dpif-netdev.c +++ b/lib

[ovs-dev] [PATCH 2/3] netdev-dpdk: Fix typo

2015-02-13 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib/netdev-provider.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/netdev-provider.h b/lib/netdev-provider.h index 3fdc732..e0b76fc 100644 --- a/lib/netdev-provider.h +++ b

[ovs-dev] [PATCH 3/3] netdev-dpdk: set_miimon should return EOPNOTSUPP

2015-02-13 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com According to netdev-provider, this function should return EOPNOTSUPP if not supported. Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- lib/netdev-dpdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/netdev-dpdk.c b/lib

[ovs-dev] [PATCH 1/3] ofproto-dpif: Fix whitespace and typo

2015-02-13 Thread Mark D. Gray
From: Mark D. Gray mark.d.g...@intel.com Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- ofproto/ofproto-dpif.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index 069f087..a18a67d 100644 --- a/ofproto/ofproto

[ovs-dev] [PATCH v2] INSTALL.DPDK: Update documentation to indicate VFIO support

2015-01-29 Thread Mark D. Gray
. Signed-off-by: Mark D. Gray mark.d.g...@intel.com --- INSTALL.DPDK.md | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/INSTALL.DPDK.md b/INSTALL.DPDK.md index c105c4b..e9a4b5b 100644 --- a/INSTALL.DPDK.md +++ b/INSTALL.DPDK.md @@ -81,10 +81,26 @@ Using

Re: [ovs-dev] Performance estimation of ovenvSwitch

2014-12-06 Thread Mark D . Gray
Akshay Sahu akshay4923@... writes: Hello, I've made few changes in the source code as a part of my institute project. Now I want to measure the change in performance in terms of number of packet send. Can anyone help me out in performance estimation. This is probably a topic for the

Re: [ovs-dev] [per-pmd ftb/cls 3/3] dpif-netdev: Add per-pmd flow-table/classifier.

2014-12-06 Thread Mark D . Gray
Hi Alex, Alex Wang alexw@... writes: This commit changes the per dpif-netdev datapath flow-table/ classifier to per pmd-thread. As direct benefit, datapath and flow statistics no longer need to be protected by mutex or be declared as per-thread variable, since they are only written by