[ovs-dev] [RFC][PATCH] netdev-dpdk: add support for TSO

2017-04-11 Thread Mark Kavanagh
of TCP segments that it sends to OvS. This patch is not intended for upstreaming, but rather was produced in response to requests for an updated version of the initial TSO RFC patch posted here: https://mail.openvswitch.org/pipermail/ovs-dev/2016-June/316414.html Signed-off-by: Mark Kavanagh

[ovs-dev] [PATCH V2] netdev-dpdk: fix mempool_configure error state

2017-03-13 Thread Mark Kavanagh
of a mempool can fail (as per rte_mempool_create), including: - insufficient memory available - mempool already exists - other memory allocation error Update the error log to reflect this fact, and return rte_errno in the event of error, instead of ENOMEM. Signed-off-by: Mark Kavanagh

[ovs-dev] [PATCH v4] netdev-dpdk: use rte_eth_dev_set_mtu

2017-07-13 Thread Mark Kavanagh
Tested-by: Sugesh Chandran <sugesh.chand...@intel.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- v4->v3: - rebase to HEAD of master - add 'acked-by' tags for S. Chandran, D. Ball - add 'tested-by' tag for S. Chandran v3->v2:

[ovs-dev] [PATCH v3] netdev-dpdk: use rte_eth_dev_set_mtu

2017-06-28 Thread Mark Kavanagh
pport for jumbo frames") Reported-by: Aaron Conole <acon...@redhat.com> Reported-by: Vipin Varghese <vipin.vargh...@intel.com> Reviewed-by: Aaron Conole <acon...@redhat.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- v3->v2: - enable scatte

[ovs-dev] (no subject)

2017-05-15 Thread Mark Kavanagh
Added missing 'signed-off-by' tag. ___ dev mailing list d...@openvswitch.org https://mail.openvswitch.org/mailman/listinfo/ovs-dev

[ovs-dev] [RFC PATCH 0/1] netdev-dpdk: multi-segment mbuf jumbo frame support

2017-05-15 Thread Mark Kavanagh
This RFC introduces an approach for implementing jumbo frame support for OvS-DPDK with multi-segment mbufs. == Overview == Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain

[ovs-dev] [RFC PATCH v2 0/1] netdev-dpdk: multi-segment mbuf jumbo frame support

2017-05-15 Thread Mark Kavanagh
This RFC introduces an approach for implementing jumbo frame support for OvS-DPDK with multi-segment mbufs. == Overview == Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain

[ovs-dev] [RFC PATCH v2 1/1] netdev-dpdk: enable multi-segment jumbo frames

2017-05-15 Thread Mark Kavanagh
is termed a segment, hence the name. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- V2->V1: add missing 'signed-off-by' tag; no code changes lib/dpdk.c | 6 ++ lib/netdev-dpdk.c| 54 ++-- lib/netdev-dpdk.

[ovs-dev] [RFC PATCH 1/1] netdev-dpdk: enable multi-segment jumbo frames

2017-05-15 Thread Mark Kavanagh
is termed a segment, hence the name. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/dpdk.c | 6 ++ lib/netdev-dpdk.c| 54 ++-- lib/netdev-dpdk.h| 1 + vswitchd/vswitch.xml | 19 ++ 4

[ovs-dev] [PATCH] netdev-dpdk: use rte_eth_dev_set_mtu

2017-06-09 Thread Mark Kavanagh
pport for jumbo frames") Reported-by: Vipin Varghese <vipin.vargh...@intel.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/netdev-dpdk.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/netdev-dpdk.c b/lib/netdev-dpdk.c index 8

[ovs-dev] [PATCH V2] netdev-dpdk: use rte_eth_dev_set_mtu

2017-06-12 Thread Mark Kavanagh
pport for jumbo frames") Reported-by: Aaron Conole <acon...@redhat.com> Reported-by: Vipin Varghese <vipin.vargh...@intel.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- V2->v1: - add 'reported-by' tag for Aaron Conole - change VLOG_INFO to VL

[ovs-dev] [PATCH 0/1] netdev-dpdk: multi-segment mbuf jumbo frame support

2017-05-08 Thread Mark Kavanagh
This RFC introduces an approach for implementing jumbo frame support for OvS-DPDK with multi-segment mbufs. == Overview == Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain

[ovs-dev] [PATCH 1/1] netdev-dpdk: enable multi-segment jumbo frames

2017-05-08 Thread Mark Kavanagh
Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain an entire jumbo frame of a user-defined size. Typically, for each user-defined MTU 'requested_mtu', a new mempool is created,

[ovs-dev] [RFC PATCH 0/1] netdev-dpdk: multi-segment mbuf jumbo frame support

2017-05-08 Thread Mark Kavanagh
This RFC introduces an approach for implementing jumbo frame support for OvS-DPDK with multi-segment mbufs. == Overview == Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain

[ovs-dev] [RFC PATCH 1/1] netdev-dpdk: enable multi-segment jumbo frames

2017-05-08 Thread Mark Kavanagh
Currently, jumbo frame support for OvS-DPDK is implemented by increasing the size of mbufs within a mempool, such that each mbuf within the pool is large enough to contain an entire jumbo frame of a user-defined size. Typically, for each user-defined MTU 'requested_mtu', a new mempool is created,

[ovs-dev] [PATCH] netdev-dpdk: replace uint8_t with dpdk_port_t

2017-10-20 Thread Mark Kavanagh
netdev_dpdk_detach() declares a 'port_id' variable, of type uint8_t. This variable should instead be of type dpdk_port_t. Fixes: bb37956ac ("netdev-dpdk: Use uint8_t for port_id.") CC: Ilya Maximets <i.maxim...@samsung.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.c

[ovs-dev] [PATCH] netdev-dpdk: replace uint8_t with dpdk_port_t

2017-10-20 Thread Mark Kavanagh
netdev_dpdk_detach() declares a 'port_id' variable, of type uint8_t. This variable should instead be of type dpdk_port_t. Fixes: bb37956ac ("netdev-dpdk: Use uint8_t for port_id.") CC: Ilya Maximets <i.maxim...@samsung.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.c

[ovs-dev] [PATCH V2 2/2] netdev-dpdk: vHost IOMMU support

2017-11-30 Thread Mark Kavanagh
IOMMU support. To that end, if IOMMU support is required, this field should be set to true when setting other global parameters on init (such as "dpdk-socket-mem", for example). Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- v2->v1: - rebase to HEAD of master

[ovs-dev] [PATCH V2 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-11-30 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> Acked-by: Maxime Coquelin <max

[ovs-dev] [PATCH V2 0/2] DPDK v17.11 Support

2017-11-30 Thread Mark Kavanagh
advantage of the vHost IOMMU feature introduced in DPDK v17.11. --- v2->v1: - refactor vHost IOMMU enablement mechanism (use a global config value, instead of the previous per-port approach). Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: vHost IOMMU supp

[ovs-dev] [PATCH V3 0/2] DPDK v17.11 Support

2017-11-30 Thread Mark Kavanagh
>v1: - refactor vHost IOMMU enablement mechanism (use a global config value, instead of the previous per-port approach). Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: vHost IOMMU support .travis/linux-build.sh | 2 +- Documentation/faq/releas

[ovs-dev] [PATCH V3 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-11-30 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> Acked-by: Maxime Coquelin <max

[ovs-dev] [PATCH V3 2/2] netdev-dpdk: vHost IOMMU support

2017-11-30 Thread Mark Kavanagh
IOMMU support. To that end, if IOMMU support is required, this field should be set to true when setting other global parameters on init (such as "dpdk-socket-mem", for example). Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- v2->v1: - rebase to HEAD of master

[ovs-dev] [RFC PATCH v3 0/8] netdev-dpdk: support multi-segment mbufs

2017-11-21 Thread Mark Kavanagh
PDK v17.11 [1] 3728b3b ("Merge branch 'dpdk_merge' of https://github.com/ist...;) [2] https://patchwork.ozlabs.org/series/13829/mbox/ Mark Kavanagh (4): netdev-dpdk: simplify mbuf sizing lib/dp-packet: init specific mbuf fields to 0 lib/dp-packet: fix dp_packet_put_uninit for multi-seg mbufs

[ovs-dev] [RFC PATCH v3 3/8] lib/dp-packet: copy mbuf info for packet copy

2017-11-21 Thread Mark Kavanagh
..@intel.com rebased] Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/dp-packet.c | 3 +++ lib/netdev-dpdk.c | 4 2 files changed, 7 insertions(+) diff --git a/lib/dp-packet.c b/lib/dp-packet.c index 443c225..5078211 100644 --- a/lib/dp-packet.c +++ b/lib/dp-packet.

[ovs-dev] [RFC PATCH v3 8/8] netdev-dpdk: support multi-segment jumbo frames

2017-11-21 Thread Mark Kavanagh
ovs-vsctl set Open_vSwitch . other_config:dpdk-multi-seg-mbufs=true Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- NEWS | 1 + lib/dpdk.c | 7 +++ lib/netdev-dpdk.c| 43 --- lib/netdev-dpdk.h| 1 +

[ovs-dev] [RFC PATCH v3 6/8] lib/dp-packet: copy data from multi-seg. DPDK mbuf

2017-11-21 Thread Mark Kavanagh
From: Michael Qiu <qiud...@chinac.com> When doing packet clone, if packet source is from DPDK driver, multi-segment must be considered, and copy the segment's data one by one. Signed-off-by: Michael Qiu <qiud...@chinac.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.c

[ovs-dev] [RFC PATCH v3 7/8] netdev-dpdk: copy large packet to multi-seg. mbufs

2017-11-21 Thread Mark Kavanagh
packet and copies the data to each segment. Signed-off-by: Michael Qiu <qiud...@chinac.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/netdev-dpdk.c | 55 +++ 1 file changed, 51 insertions(+), 4 deletions(-)

[ovs-dev] [RFC PATCH v3 5/8] lib/dp-packet: fix dp_packet_put_uninit for multi-seg mbufs

2017-11-21 Thread Mark Kavanagh
length of the entire mbuf [2] by 'size'. [1] In the case of a single-segment mbuf, this is the mbuf itself. [2] This is stored in the first mbuf of an mbuf chain. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/dp-packet.c | 16 1 file changed, 16 inse

[ovs-dev] [RFC PATCH v3 4/8] lib/dp-packet: Fix data_len issue with multi-segs

2017-11-21 Thread Mark Kavanagh
From: Michael Qiu <qiud...@chinac.com> When a packet is from DPDK source, and it contains multiple segments, data_len is not equal to the packet size. This patch fixes this issue. Co-authored-by: Mark Kavanagh <mark.b.kavan...@intel.com> Co-authored-by: Przemyslaw Lal <przemyslaw

[ovs-dev] [PATCH 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-11-16 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> Acked-by: Maxime Coquelin <max

[ovs-dev] [PATCH 0/2] DPDK v17.11 Support

2017-11-16 Thread Mark Kavanagh
of the vHost IOMMU feature introduced in DPDK v17.11. Note that the previous RFC version of this patch (Acked x2) is here: https://mail.openvswitch.org/pipermail/ovs-dev/2017-November/340731.html. Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: add support for vhost IOMMU

[ovs-dev] [PATCH 2/2] netdev-dpdk: add support for vhost IOMMU feature

2017-11-16 Thread Mark Kavanagh
\ options:vhost-iommu-support=true Note that support for this feature is only implemented for vhost user client ports (since vhost user ports are considered deprecated). Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> Acked-by: Maxime Coquelin <maxime.coque...@r

[ovs-dev] [RFC PATCH V2 2/2] netdev-dpdk: add support for vhost IOMMU feature

2017-11-08 Thread Mark Kavanagh
\ options:vhost-iommu-support=true Note that support for this feature is only implemented for vhost user client ports (since vhost user ports are considered deprecated). Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- Documentation/topics/dpdk/vhost-user.rs

[ovs-dev] [RFC PATCH V2 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-11-08 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- .travis/linux-bu

[ovs-dev] [RFC PATCH V2 0/2] DPDK v17.11 Support

2017-11-08 Thread Mark Kavanagh
host IOMMU feature. Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: add support for vhost IOMMU feature .travis/linux-build.sh | 2 +- Documentation/faq/releases.rst | 1 + Documentation/intro/install/dpdk.rst | 10 - Documentation/t

[ovs-dev] [RFC PATCH 0/2] DPDK v17.11 Support

2017-11-07 Thread Mark Kavanagh
m particularly interested in comments on patch 2, which adds support for the vhost IOMMU feature. Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: add support for vhost IOMMU feature .travis/linux-build.sh | 2 +- Documentation/faq/releases.rst |

[ovs-dev] [RFC PATCH 2/2] netdev-dpdk: add support for vhost IOMMU feature

2017-11-07 Thread Mark Kavanagh
(since vhost user ports are considered deprecated). Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- Documentation/topics/dpdk/vhost-user.rst | 19 +++ NEWS | 1 + lib/netdev-dpdk.c

[ovs-dev] [RFC PATCH 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-11-07 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- .travis/linux-bu

[ovs-dev] [RFC PATCH V4 5/9] dp-packet: init specific mbuf fields to 0

2017-12-08 Thread Mark Kavanagh
Adapted from an idea by Michael Qiu <qiud...@chinac.com>: https://patchwork.ozlabs.org/patch/777570/ Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/dp-packet.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/dp-packet.h b/lib/dp-packet.h i

[ovs-dev] [RFC PATCH V4 4/9] dp-packet: Fix data_len issue with multi-seg mbufs

2017-12-08 Thread Mark Kavanagh
From: Michael Qiu <qiud...@chinac.com> When a packet is from DPDK source, and it contains multiple segments, data_len is not equal to the packet size. This patch fixes this issue. Co-authored-by: Mark Kavanagh <mark.b.kavan...@intel.com> Co-authored-by: Przemyslaw Lal <przemyslaw

[ovs-dev] [RFC PATCH V4 6/9] dp-packet: copy mbuf info for packet copy

2017-12-08 Thread Mark Kavanagh
From: Michael Qiu <qiud...@chinac.com> Currently, when doing packet copy, lots of DPDK mbuf's info will be missed, like packet type, ol_flags, etc. Those information is very important for DPDK to do packets processing. Co-authored-by: Mark Kavanagh <mark.b.kavan...@intel.com> [

[ovs-dev] [RFC PATCH V4 0/9] netdev-dpdk: support multi-segment mbufs

2017-12-08 Thread Mark Kavanagh
.11 [1] 159cc1f ("datapath-windows: Correct endianness for deleting zone.") [2] https://mail.openvswitch.org/pipermail/ovs-dev/2017-December/341786.html --- v4: - restructure patchset - account for 128B ARM cacheline when sizing mbufs Mark Kavanagh (5): netdev-dpdk: fix mbuf sizin

[ovs-dev] [RFC PATCH V4 7/9] dp-packet: copy data from multi-seg. DPDK mbuf

2017-12-08 Thread Mark Kavanagh
From: Michael Qiu <qiud...@chinac.com> When doing packet clone, if packet source is from DPDK driver, multi-segment must be considered, and copy the segment's data one by one. Co-authored-by: Mark Kavanagh <mark.b.kavan...@intel.com> Signed-off-by: Michael Qiu <qiud...@chinac.

[ovs-dev] [RFC PATCH V4 2/9] dp-packet: fix reset_packet for multi-seg mbufs

2017-12-08 Thread Mark Kavanagh
). Currently, in dp_packet_reset_packet(), that order is reversed. Swap the order of same to resolve. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/dp-packet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/dp-packet.h b/lib/dp-packet.h index b

[ovs-dev] [RFC PATCH V4 1/9] netdev-dpdk: fix mbuf sizing

2017-12-08 Thread Mark Kavanagh
-dpdk: round up mbuf_size to cache_line_size") CC: Santosh Shukla <santosh.shu...@caviumnetworks.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/netdev-dpdk.c | 46 ++ 1 file changed, 30 insertions(+), 16 deletions(-) diff

[ovs-dev] [RFC PATCH V4 9/9] netdev-dpdk: support multi-segment jumbo frames

2017-12-08 Thread Mark Kavanagh
ovs-vsctl set Open_vSwitch . other_config:dpdk-multi-seg-mbufs=true Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- NEWS | 1 + lib/dpdk.c | 7 +++ lib/netdev-dpdk.c| 52 +--- lib/netdev-dpdk.

[ovs-dev] [RFC PATCH V4 8/9] netdev-dpdk: copy large packet to multi-seg. mbufs

2017-12-08 Thread Mark Kavanagh
packet and copies the data to each segment. Co-authored-by: Mark Kavanagh <mark.b.kavan...@intel.com> Signed-off-by: Michael Qiu <qiud...@chinac.com> Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- lib/netdev-dpdk.c | 56 +++

[ovs-dev] [PATCH V6 0/2] DPDK v17.11 Support

2017-12-08 Thread Mark Kavanagh
IOMMU enablement mechanism (use a global config value, instead of the previous per-port approach). Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: vHost IOMMU support .travis/linux-build.sh | 2 +- Documentation/faq/releases.rst | 1

[ovs-dev] [PATCH V6 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-12-08 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script - document DPDK v17.11 virtio driver bug Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com>

[ovs-dev] [PATCH V6 2/2] netdev-dpdk: vHost IOMMU support

2017-12-08 Thread Mark Kavanagh
setting other global parameters on init (such as "dpdk-socket-mem", for example). Changing the value at runtime is not supported, and requires restarting the vswitch daemon. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- Documentation/topics/dpdk/vho

[ovs-dev] [PATCH V4 0/2] DPDK v17.11 Support

2017-12-04 Thread Mark Kavanagh
; disregard. v2: - refactor vHost IOMMU enablement mechanism (use a global config value, instead of the previous per-port approach). Mark Kavanagh (2): netdev-dpdk: DPDK v17.11 upgrade netdev-dpdk: vHost IOMMU support .travis/linux-build.sh | 2 +- Documentation/faq

[ovs-dev] [PATCH V4 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-12-04 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> Acked-by: Maxime Coquelin <max

[ovs-dev] [PATCH V4 2/2] netdev-dpdk: vHost IOMMU support

2017-12-04 Thread Mark Kavanagh
setting other global parameters on init (such as "dpdk-socket-mem", for example). Changing the value at runtime is not supported, and requires restarting the vswitch daemon. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- v4: - rebase to HEAD of master - clarify th

[ovs-dev] [PATCH V5 2/2] netdev-dpdk: vHost IOMMU support

2017-12-07 Thread Mark Kavanagh
setting other global parameters on init (such as "dpdk-socket-mem", for example). Changing the value at runtime is not supported, and requires restarting the vswitch daemon. Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- Documentation/topics/dpdk/vho

[ovs-dev] [PATCH V5 1/2] netdev-dpdk: DPDK v17.11 upgrade

2017-12-07 Thread Mark Kavanagh
This commit adds support for DPDK v17.11: - minor updates to accomodate DPDK API changes - update references to DPDK version in Documentation - update DPDK version in travis' linux-build script - document DPDK v17.11 virtio driver bug Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com>

[ovs-dev] [PATCH V5 0/2] DPDK v17.11 Support

2017-12-07 Thread Mark Kavanagh
. - remove mention of vhost IOMMU mode from netdev_dpdk_vhost_client_configure() log. v3: - erroneous; disregard. v2: - refactor vHost IOMMU enablement mechanism (use a global config value, instead of the previous per-port approach). Mark Kavanagh (2): netdev-dpdk: DPDK v17.11

[ovs-dev] [PATCH] AUTHORS: update email address for Mark Kavanagh

2018-02-28 Thread Mark Kavanagh
Signed-off-by: Mark Kavanagh <mark.b.kavan...@intel.com> --- AUTHORS.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index 3d3a081..cf62418 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -217,7 +217,7 @@ Marcin Mirecki