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 the

[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 Signed-off-by: Mark D. Gray --- lib/netdev-dpdk.c | 33 + 1 files changed, 21 insertions(+), 12 deletions(-) diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c index f69154b..9301cb6 100644

[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 Signed-off-by: Mark D. Gray --- lib/netdev-dpdk.c | 34 ++ 1 files changed, 22 insertions(+), 12 deletions(-) diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c index f69154b..f5ebb47 100644

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 Proietto 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 http://openvswitch.org/pipermail/dev/2015-April/053833.html Gentle reminder abo

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.gray wrote: Pravin Shelar wrote: On Tue, Apr 21, 2015 at 7:30 PM, Jesse Gross wrote: On Tue, Apr 21, 2015 at 7:23 PM, Pravin Shelar wrote: On Tue, Apr 21, 2015 at 6:33 PM, Ethan Jackson wrote: I really don't

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.gray wrote: Pravin Shelar wrote: On Tue, Apr 21, 2015 at 7:30 PM, Jesse Gross wrote: On Tue, Apr 21, 2015 at 7:23 PM, Pravin Shelar wrote: On Tue, Apr 21, 2015 at 6:33 PM

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

2015-05-29 Thread Mark D. Gray
threads on core 0 to N use queues 1 to N+1 Fixes: d5c199ea7ff7 ("netdev-dpdk: Properly support non pmd threads.") Reported-by: 차은호 Signed-off-by: Mark D. Gray --- lib/dpif-netdev.c | 20 lib/netdev-dpdk.c | 10 ++ 2 files changed, 22 insertions(+), 8

[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 --- README-native-tunneling.md | 35 +-- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/README-native-tunneling.md b/README

Re: [ovs-dev] Performance estimation of ovenvSwitch

2014-12-06 Thread Mark D . Gray
Akshay Sahu 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 "discus

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 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 the ow

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

2015-01-29 Thread Mark D. Gray
. Signed-off-by: Mark D. Gray --- INSTALL.DPDK.md | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/INSTALL.DPDK.md b/INSTALL.DPDK.md index c105c4b..813df84 100644 --- a/INSTALL.DPDK.md +++ b/INSTALL.DPDK.md @@ -81,10 +81,27 @@ Using the DPDK with ovs

[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 --- 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 the DPDK with ovs

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

2015-02-13 Thread Mark D. Gray
From: "Mark D. Gray" Signed-off-by: Mark D. Gray --- 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-dpif.c +++ b/ofproto/ofpr

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

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

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

2015-02-13 Thread Mark D. Gray
From: "Mark D. Gray" Signed-off-by: Mark D. Gray --- 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/lib/netdev-provider.h @@ -38

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

2015-03-06 Thread Mark D. Gray
From: "Mark D. Gray" 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 Signed-off-by: Billy O'Mahony --- vswitchd/automake.mk |

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

2015-03-06 Thread Mark D. Gray
From: "Mark D. Gray" Signed-off-by: Mark D. Gray --- 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/dpif-netdev.c @@ -3547,

[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" 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. For example, by qu

[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 --- Vagrantfile | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index e8c104d..102a17d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -6,11 +6,11