[dpdk-dev] [PATCH] app/testpmd: fix dead code

2015-12-15 Thread Jingjing Wu
Coverity issue (CID 119254): Control flow issues (DEADCODE). Fixes: 1a572499beb6 ("app/testpmd: setup DCB forwarding based on traffic class") Signed-off-by: Jingjing Wu --- app/test-pmd/config.c | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/app/test-pmd/config.c b/app/t

[dpdk-dev] [PATCH] i40e: fix set max frame size to default

2015-12-15 Thread Jingjing Wu
In FreeBsd driver, the max frame size is changed to MTU, but not keep the default value defined in DataSheet. When DPDK runs on that NIC, the configured value is not expected. This patch sets the max frame size to default when initialization. Fixes: 4861cde46116 ("i40e: new poll mode driver") Sig

[dpdk-dev] releases scheduling

2015-12-15 Thread Vincent JARDIN
On 15/12/2015 22:15, Wiles, Keith wrote: > I see the YY.MM.PP (PP is patch number) as the simplest way to keep track of > when a release was done. +1 I like it.

[dpdk-dev] [dpdk-announce] DPDK 2.2.0 released

2015-12-15 Thread Thomas Monjalon
? l'approche des f?tes de No?l, la communaut? DPDK est fi?re d'annnoncer qu'une nouvelle version est disponible: http://dpdk.org/browse/dpdk/tag/?id=v2.2.0 The statistics are - again - impressive: 797 patches from 100 authors 709 files changed, 84203 insertions(+), 13473 de

[dpdk-dev] problem vhost-user sockets

2015-12-15 Thread Yuanhan Liu
On Tue, Dec 15, 2015 at 03:41:23PM +0300, Pavel Fedin wrote: > Hello! > > I have a question regarding vhostuser. If we cannot bind to a socket, why do > we simply fail with error instead of just unlink()ing > the path before binding? I'm thinking you can't simply unlink a file given by a user

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Yuanhan Liu
On Tue, Dec 15, 2015 at 04:48:12PM +0300, Pavel Fedin wrote: > Hello! > > > > Wrong. I tried to unconditionally enforce it in qemu (my guest does > > > support it), and the > > link stopped working at all. I don't understand why. > > > > I'm wondering how did you do that? Why do you need enfor

[dpdk-dev] VFIO no-iommu

2015-12-15 Thread Alex Williamson
On Wed, 2015-12-16 at 04:04 +, Ferruh Yigit wrote: > On Tue, Dec 15, 2015 at 09:53:18AM -0700, Alex Williamson wrote: > > On Tue, 2015-12-15 at 13:43 +, O'Driscoll, Tim wrote: > > > > -Original Message- > > > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alex > > > > Wil

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Yuanhan Liu
On Tue, Dec 15, 2015 at 03:24:48PM +0300, Pavel Fedin wrote: > Hello! > > > After a migration, to avoid network outage, the guest must announce its new > > location to the L2 layer, typically with a GARP. Otherwise requests sent to > > the guest arrive to the old host until a ARP request is sent

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Yuanhan Liu
On Tue, Dec 15, 2015 at 12:47:47PM +0100, Thibaut Collet wrote: > On Tue, Dec 15, 2015 at 12:43 PM, Thibaut Collet > wrote: > > > > > > > On Tue, Dec 15, 2015 at 11:05 AM, Peter Xu wrote: > > > >> On Tue, Dec 15, 2015 at 11:45:56AM +0300, Pavel Fedin wrote: > >> > To tell the truth, i don't kno

[dpdk-dev] releases scheduling

2015-12-15 Thread Wiles, Keith
On 12/15/15, 1:15 PM, "dev on behalf of Dave Neary" wrote: >Hi, > >You could just bump the major version for the first release of the new >year - in this case, we would make 2.6 be 3.0. It achieves the same >objective without having a big discontinuity in the release numbers. I see the YY.MM.PP

[dpdk-dev] [PATCH] doc: announce ABI change for extending filtering support

2015-12-15 Thread Rahul Lakkireddy
Current filtering support will be enhanced to accommodate support for Chelsio T5 hardware filtering support. Signed-off-by: Rahul Lakkireddy Signed-off-by: Kumar Sanghvi --- doc/guides/rel_notes/deprecation.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/rel_notes/dep

[dpdk-dev] [RFC 3/3] doc: announce ABI change for filtering support

2015-12-15 Thread Rahul Lakkireddy
Hi Thomas, On Tuesday, December 12/15/15, 2015 at 00:55:20 -0800, Thomas Monjalon wrote: > 2015-12-15 14:10, Rahul Lakkireddy: > > Hi Thomas, > > > > I am preparing a v2 of this series where I will be accomodating some > > more fields to be considered for filtering. However, if the overall > > ap

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > After a migration, to avoid netwotk outage, all interfaces of the guest must > send a packet to update switches mapping (ideally a GARP). > As some interfaces do not do it QEMU does it in behalf of the guest by > sending a RARP (his RARP is not forged by the guest but by QEMU). This is

[dpdk-dev] [PATCH] app/testpmd: fix dead code

2015-12-15 Thread Thomas Monjalon
> > Coverity issue (CID 119254): Control flow issues (DEADCODE). > > > > Fixes: 1a572499beb6 ("app/testpmd: setup DCB forwarding based on traffic > > class") > > Signed-off-by: Jingjing Wu > > Acked-by: John McNamara Applied, thanks

[dpdk-dev] [PATCH] i40e: fix unintended sign extension

2015-12-15 Thread Thomas Monjalon
> Coverity issue reported like > > CID 119268 (#1 of 1): Unintended sign extension > > (SIGN_EXTENSION)sign_extension: Suspicious implicit sign extension: > > vsi_id with type unsigned short (16 bits, unsigned) is promoted in vsi_id > > << 23 to type int (32 bits, signed), then sign-extended to ty

[dpdk-dev] [PATCH] ixgbe: restore imissed stat counter

2015-12-15 Thread Thomas Monjalon
2015-12-15 16:41, Van Haaren, Harry: > > From: Robin Jarry [mailto:robin.jarry at 6wind.com] > > Subject: [PATCH] ixgbe: restore imissed stat counter > > > > This counter was left unmodified. Restore it in ixgbe_dev_stats_get. > > > > The ierrors counter still includes imissed for ixgbe. This beh

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Peter Xu
On Tue, Dec 15, 2015 at 11:45:56AM +0300, Pavel Fedin wrote: > To tell the truth, i don't know. I am also learning qemu internals on the > fly. Indeed, i see that it should announce itself. But > this brings up a question: why do we need special announce procedure in > vhost-user then? I have t

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > No idea. Maybe you have changed some other configures (such as of ovs) > without notice? Or, the ovs bridge interface resets? I don't touch the ovs at all. Just shut down the guest, rebuild the qemu, reinstall it, run the guest. > > BTW, would you please try my v1 patch set with abo

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Peter Xu
On Tue, Dec 15, 2015 at 04:23:24PM +0800, Yuanhan Liu wrote: > On Mon, Dec 14, 2015 at 11:58:42AM +0800, Peter Xu wrote: > > If ping to guest from outside, when the migration finishes on the > > target side of qemu, qemu_self_announce() will be called. > > It's supposed to see some ARP requests if

[dpdk-dev] [PATCH] i40e: fix set max frame size to default

2015-12-15 Thread Thomas Monjalon
> In FreeBsd driver, the max frame size is changed to MTU, but not keep the > default value defined in DataSheet. When DPDK runs on that NIC, the > configured value is not expected. > This patch sets the max frame size to default when initialization. > > Fixes: 4861cde46116 ("i40e: new poll mode

[dpdk-dev] problem vhost-user sockets

2015-12-15 Thread Pavel Fedin
Hello! > I'm thinking you can't simply unlink a file given by a user inside > a libraray unconditionaly. Say, what if a user gives a wrong socket > path? Well... We can improve the security by checking that: a) The file exists and it's a socket. b) Nobody is listening on it. > I normally writ

[dpdk-dev] [PATCH] doc: fix ABI announce change for RETA configuration

2015-12-15 Thread Thomas Monjalon
> Replace "entries" by "queues", it clarifies the case. > > Fixes: bd3cea78abd8 ("doc: announce ABI change for RETA configuration") > > Signed-off-by: Nelio Laranjeiro > Acked-by: Helin Zhang Applied, thanks

[dpdk-dev] [PATCH] ixgbe: restore imissed stat counter

2015-12-15 Thread Robin Jarry
This counter was left unmodified. Restore it in ixgbe_dev_stats_get. The ierrors counter still includes imissed for ixgbe. This behaviour is not consistent amongst all drivers. Another patch may be needed to unify the meaning of the ierrors counter. Fixes: 5e50ad1c1b63 ("ixgbe: add specific stats

[dpdk-dev] [PATCH] i40e: fix unintended sign extension

2015-12-15 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jingjing Wu > Sent: Tuesday, December 15, 2015 4:23 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] i40e: fix unintended sign extension > > Coverity issue reported like > CID 119268 (#1 of 1): Unintended

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Yuanhan Liu
On Tue, Dec 15, 2015 at 11:45:56AM +0300, Pavel Fedin wrote: > Hello! > > > I mean I do find that qemu_annouce_self composes an ARP > > broadcoast request, but it seems that I didn't catch it on > > the target host. > > > > Something wrong, or someting I missed? > > To tell the truth, i don't

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > > Wrong. I tried to unconditionally enforce it in qemu (my guest does > > support it), and the > link stopped working at all. I don't understand why. > > I'm wondering how did you do that? Why do you need enforece it in QEMU? > Isn't it already supported so far? I mean - qemu first

[dpdk-dev] [PATCH] ixgbe: restore imissed stat counter

2015-12-15 Thread Van Haaren, Harry
> From: Robin Jarry [mailto:robin.jarry at 6wind.com] > Subject: [PATCH] ixgbe: restore imissed stat counter > > This counter was left unmodified. Restore it in ixgbe_dev_stats_get. > > The ierrors counter still includes imissed for ixgbe. This behaviour is > not consistent amongst all drivers. A

[dpdk-dev] problem vhost-user sockets

2015-12-15 Thread Xie, Huawei
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pavel Fedin > Sent: Tuesday, December 15, 2015 10:21 PM > To: 'Yuanhan Liu' > Cc: dev at dpdk.org; 'Ilya Maximets'; 'Dyasly Sergey' > Subject: Re: [dpdk-dev] problem vhost-user sockets > > Hello! > > > I'm th

[dpdk-dev] releases scheduling

2015-12-15 Thread Arnon Warshavsky
+1 for Ubuntu version numbering On Tue, Dec 15, 2015 at 3:37 PM, O'Driscoll, Tim wrote: > > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > > Sent: Sunday, December 13, 2015 7:23 PM > > To: dev at dpdk.org > > Subject: [dpdk-dev] release

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Yuanhan Liu
On Mon, Dec 14, 2015 at 11:58:42AM +0800, Peter Xu wrote: > On Fri, Dec 11, 2015 at 01:22:23PM +0300, Pavel Fedin wrote: > > BTW, it works, and it was my bad. openvswitch was configured incorrectly > > on the other side, vhost port number was different for > > some reason, while ruleset was the s

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Thibaut Collet
On Tue, Dec 15, 2015 at 2:18 PM, Yuanhan Liu wrote: > On Tue, Dec 15, 2015 at 12:47:47PM +0100, Thibaut Collet wrote: > > On Tue, Dec 15, 2015 at 12:43 PM, Thibaut Collet < > thibaut.collet at 6wind.com> > > wrote: > > > > > > > > > > > On Tue, Dec 15, 2015 at 11:05 AM, Peter Xu wrote: > > > > >

[dpdk-dev] [PATCH] i40e: fix set max frame size to default

2015-12-15 Thread Zhang, Helin
-Original Message- From: Wu, Jingjing Sent: Tuesday, December 15, 2015 10:53 PM To: dev at dpdk.org Cc: Wu, Jingjing ; Zhang, Helin ; Dong, ShijieX Subject: [PATCH] i40e: fix set max frame size to default In FreeBsd driver, the max frame size is changed to MTU, but not keep the defaul

[dpdk-dev] [PATCH] doc: fix ABI announce change for RETA configuration

2015-12-15 Thread Zhang, Helin
-Original Message- From: Nelio Laranjeiro [mailto:nelio.laranje...@6wind.com] Sent: Tuesday, December 15, 2015 10:15 PM To: dev at dpdk.org Cc: Zhang, Helin ; thomas.monjalon at 6wind.com; Lu, Wenzhuo ; adrien.mazarguil at 6wind.com Subject: [PATCH] doc: fix ABI announce change for RETA

[dpdk-dev] [PATCH] scripts: fix abi-validator regression when revision is a tag

2015-12-15 Thread Panu Matilainen
Commit 9cbae2aa64eb managed to break the only previously supported case where a tag is used as a revision, due to git show output differing between tags and other objects. The hash is on the last line of the output in both cases though so just grab that. Fixes: 9cbae2aa64eb ("scripts: support any

[dpdk-dev] [PATCH] app/testpmd: fix dead code

2015-12-15 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jingjing Wu > Sent: Tuesday, December 15, 2015 3:43 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] app/testpmd: fix dead code > > Coverity issue (CID 119254): Control flow issues (DEADCODE). > > Fixes:

[dpdk-dev] DPDK OVS on Ubuntu 14.04# Issue's Resolved# Successfully setup DPDK OVS with vhostuser

2015-12-15 Thread Czesnowicz, Przemyslaw
Hi Abhijeet, If you answer below questions it will help me understand your problem. What do you mean by DPDK instance? Are you able to communicate with other VM's on the same compute node? Can you check if the DHCP requests arrive on the controller node? (I'm assuming this is at least compute+ c

[dpdk-dev] problem vhost-user sockets

2015-12-15 Thread Pavel Fedin
Hello! I have a question regarding vhostuser. If we cannot bind to a socket, why do we simply fail with error instead of just unlink()ing the path before binding? This causes a very annoying problem with ovs. After ovs is stopped (i use supplied system integration), these sockets are not rem

[dpdk-dev] [PATCH] doc: announce ABI change for extending filtering support

2015-12-15 Thread Thomas Monjalon
2015-12-15 19:40, Rahul Lakkireddy: > Current filtering support will be enhanced to accommodate support > for Chelsio T5 hardware filtering support. > > Signed-off-by: Rahul Lakkireddy > Signed-off-by: Kumar Sanghvi > --- > doc/guides/rel_notes/deprecation.rst | 8 > 1 file changed, 8

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > After a migration, to avoid network outage, the guest must announce its new > location to the L2 layer, typically with a GARP. Otherwise requests sent to > the guest arrive to the old host until a ARP request is sent (after 30 > seconds) or the guest sends some data. > QEMU implementat

[dpdk-dev] [PATCH] scripts: fix abi-validator regression when revision is a tag

2015-12-15 Thread Thomas Monjalon
2015-12-15 09:16, Neil Horman: > On Tue, Dec 15, 2015 at 03:55:15PM +0200, Panu Matilainen wrote: > > Commit 9cbae2aa64eb managed to break the only previously supported > > case where a tag is used as a revision, due to git show output > > differing between tags and other objects. The hash is on th

[dpdk-dev] [PATCH] doc: fix ABI announce change for RETA configuration

2015-12-15 Thread Nelio Laranjeiro
Replace "entries" by "queues", it clarifies the case. Fixes: bd3cea78abd8 ("doc: announce ABI change for RETA configuration") Signed-off-by: Nelio Laranjeiro --- doc/guides/rel_notes/deprecation.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/rel_notes/dep

[dpdk-dev] [PATCH] doc: show -n as optional in freebsd user guide

2015-12-15 Thread Thomas Monjalon
2015-12-15 13:47, John McNamara: > Fix EAL usage to indicate that -n is, now, optional. > > Signed-off-by: John McNamara Applied, thanks

[dpdk-dev] [PATCH] doc: improve linux guide layout

2015-12-15 Thread Thomas Monjalon
2015-12-15 13:34, John McNamara: > Fixed Linux Getting Started Guide rst layout to improve > rendering in PDF. > > Signed-off-by: John McNamara Applied, thanks

[dpdk-dev] [RFC 3/3] doc: announce ABI change for filtering support

2015-12-15 Thread Thomas Monjalon
2015-12-15 19:21, Rahul Lakkireddy: > Hi Thomas, > > On Tuesday, December 12/15/15, 2015 at 00:55:20 -0800, Thomas Monjalon wrote: > > 2015-12-15 14:10, Rahul Lakkireddy: > > > Hi Thomas, > > > > > > I am preparing a v2 of this series where I will be accomodating some > > > more fields to be cons

[dpdk-dev] releases scheduling

2015-12-15 Thread Wiles, Keith
On 12/15/15, 7:37 AM, "dev on behalf of O'Driscoll, Tim" wrote: > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon >> Sent: Sunday, December 13, 2015 7:23 PM >> To: dev at dpdk.org >> Subject: [dpdk-dev] releases scheduling >> >> Hi all, >>

[dpdk-dev] [PATCH] ixgbe: Discard SRIOV transparent vlan packet headers.

2015-12-15 Thread Ananyev, Konstantin
> -Original Message- > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Monday, December 14, 2015 9:35 PM > To: Ananyev, Konstantin > Cc: Zhang, Helin; dev at dpdk.org; Tom Kiely > Subject: Re: [PATCH] ixgbe: Discard SRIOV transparent vlan packet headers. > > On Mon

[dpdk-dev] releases scheduling

2015-12-15 Thread Dave Neary
Hi, You could just bump the major version for the first release of the new year - in this case, we would make 2.6 be 3.0. It achieves the same objective without having a big discontinuity in the release numbers. Thanks, Dave. On 12/15/2015 08:37 AM, O'Driscoll, Tim wrote: > >> -Original M

[dpdk-dev] [RFC 3/3] doc: announce ABI change for filtering support

2015-12-15 Thread Rahul Lakkireddy
Hi Thomas, I am preparing a v2 of this series where I will be accomodating some more fields to be considered for filtering. However, if the overall approach seems ok to everyone then, should I submit a separate patch for this ABI change announcement ? Thanks, Rahul. On Thursday, December 12/10/

[dpdk-dev] [PATCH 2/2] ethdev: remove old flow director symbols

2015-12-15 Thread Thomas Monjalon
2015-12-15 13:41, Panu Matilainen: > On 12/15/2015 12:47 PM, Thomas Monjalon wrote: > > The API has been removed but the symbols were still declared in the map. > > > > Fixes: a421b86a4a02 ("ethdev: remove old flow director API") > > > > Signed-off-by: Thomas Monjalon [...] > > Good spotting. Wha

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Thomas Monjalon
> > A rework was prepared by Marc Sune: > > http://dpdk.org/ml/archives/dev/2015-October/026037.html > > The goal is to retrieve the supported link speed of a device > > and to allow 100G devices while having a consistent API. > > > > Signed-off-by: Thomas Monjalon > Acked-by: Olga Shern > Acked-

[dpdk-dev] [PATCH] doc: include ixgbe rx error changes

2015-12-15 Thread Thomas Monjalon
> > This patch updates the release notes to include the changes made (by me), > > which were not appropriatly documented at the time. > > Hence, this patch fixes a number of missing docs, > > > > Fixes: e81a315e5dc5 ("ixgbe: add MAC short packet discard count to Rx > > errors") > > Fixes: 48dd1a82

[dpdk-dev] [PATCH] doc: show -n as optional in freebsd user guide

2015-12-15 Thread John McNamara
Fix EAL usage to indicate that -n is, now, optional. Signed-off-by: John McNamara --- doc/guides/freebsd_gsg/build_sample_apps.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/freebsd_gsg/build_sample_apps.rst b/doc/guides/freebsd_gsg/build_sample_apps.rst inde

[dpdk-dev] [PATCH] doc: improve freebsd guide layout

2015-12-15 Thread Thomas Monjalon
2015-12-15 11:53, John McNamara: > Fixed FreeBSD Getting Started Guide rst layout to improve > rendering in PDF. > > Signed-off-by: John McNamara Applied, thanks

[dpdk-dev] [PATCH] doc: remove unused references from faq

2015-12-15 Thread Thomas Monjalon
2015-12-15 11:12, John McNamara: > The faq refers to Linux*, with an asterisk, without any equivalent > note or footnote. This is a legacy from older versions of the docs. > This update removes it. > > Signed-off-by: John McNamara Applied, thanks

[dpdk-dev] VFIO no-iommu

2015-12-15 Thread O'Driscoll, Tim
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alex Williamson > Sent: Friday, December 11, 2015 11:03 PM > To: Vincent JARDIN; dev at dpdk.org > Subject: Re: [dpdk-dev] VFIO no-iommu > > On Fri, 2015-12-11 at 23:12 +0100, Vincent JARDIN wrote: > > Thanks T

[dpdk-dev] [PATCH 2/2] ethdev: remove old flow director symbols

2015-12-15 Thread Panu Matilainen
On 12/15/2015 12:47 PM, Thomas Monjalon wrote: > The API has been removed but the symbols were still declared in the map. > > Fixes: a421b86a4a02 ("ethdev: remove old flow director API") > > Signed-off-by: Thomas Monjalon > --- > lib/librte_ether/rte_ether_version.map | 8 > 1 file cha

[dpdk-dev] releases scheduling

2015-12-15 Thread O'Driscoll, Tim
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Sunday, December 13, 2015 7:23 PM > To: dev at dpdk.org > Subject: [dpdk-dev] releases scheduling > > Hi all, > > We need to define the deadlines for the next releases. > During 2015, w

[dpdk-dev] [ [PATCH v2] 06/13] config: armv7/v8: Enable RTE_LIBRTE_VIRTIO_PMD

2015-12-15 Thread Jianbo Liu
On 14 December 2015 at 21:00, Santosh Shukla wrote: > Enable RTE_LIBRTE_VIRTIO_PMD for armv7/v8 and setting RTE_VIRTIO_INC_VEC=n. > Builds successfully for armv7/v8. > > Signed-off-by: Santosh Shukla > --- > config/defconfig_arm-armv7a-linuxapp-gcc |6 +- > config/defconfig_arm64-armv8

[dpdk-dev] [PATCH] doc: improve linux guide layout

2015-12-15 Thread John McNamara
Fixed Linux Getting Started Guide rst layout to improve rendering in PDF. Signed-off-by: John McNamara --- doc/guides/linux_gsg/build_dpdk.rst| 88 +- doc/guides/linux_gsg/build_sample_apps.rst | 141 + doc/guides/linux_gsg/enable_func.rst

[dpdk-dev] [PATCH 2/2] ethdev: remove old flow director symbols

2015-12-15 Thread Thomas Monjalon
2015-12-15 13:41, Panu Matilainen: > On 12/15/2015 12:47 PM, Thomas Monjalon wrote: > > The API has been removed but the symbols were still declared in the map. > > > > Fixes: a421b86a4a02 ("ethdev: remove old flow director API") > > > > Signed-off-by: Thomas Monjalon > > --- > > lib/librte_ethe

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Matej Vido
Acked-by: Matej Vido D?a 15.12.2015 o 08:21 Thomas Monjalon nap?sal(a): > A rework was prepared by Marc Sune: > http://dpdk.org/ml/archives/dev/2015-October/026037.html > The goal is to retrieve the supported link speed of a device > and to allow 100G devices while having a consistent API. > > Si

[dpdk-dev] [PATCH] doc: include ixgbe rx error changes

2015-12-15 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Harry van Haaren > Sent: Tuesday, December 15, 2015 12:11 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] doc: include ixgbe rx error changes > > This patch updates the release notes to include the change

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Thibaut Collet
On Tue, Dec 15, 2015 at 12:43 PM, Thibaut Collet wrote: > > > On Tue, Dec 15, 2015 at 11:05 AM, Peter Xu wrote: > >> On Tue, Dec 15, 2015 at 11:45:56AM +0300, Pavel Fedin wrote: >> > To tell the truth, i don't know. I am also learning qemu internals on >> the fly. Indeed, i see that it should a

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Thibaut Collet
On Tue, Dec 15, 2015 at 11:05 AM, Peter Xu wrote: > On Tue, Dec 15, 2015 at 11:45:56AM +0300, Pavel Fedin wrote: > > To tell the truth, i don't know. I am also learning qemu internals on > the fly. Indeed, i see that it should announce itself. But > > this brings up a question: why do we need sp

[dpdk-dev] Urgent - Fwd: [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Jan Viktorin
Matej is aware of those changes (towards 100G) and we were discussing this extension already. Great to see that this topic is moving on. Jan On Tue, 15 Dec 2015 11:56:47 +0100 Viktor Pu? wrote: > CCing to Jan in case Matej is offline today - can you ack this? > > Best, > Viktor > > > On 15 De

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Jan Viktorin
On Tue, 15 Dec 2015 08:21:14 +0100 Thomas Monjalon wrote: > A rework was prepared by Marc Sune: > http://dpdk.org/ml/archives/dev/2015-October/026037.html > The goal is to retrieve the supported link speed of a device > and to allow 100G devices while having a consistent API. > > Signed-off-by:

[dpdk-dev] [PATCH] doc: include ixgbe rx error changes

2015-12-15 Thread Harry van Haaren
This patch updates the release notes to include the changes made (by me), which were not appropriatly documented at the time. Hence, this patch fixes a number of missing docs, Fixes: e81a315e5dc5 ("ixgbe: add MAC short packet discard count to Rx errors") Fixes: 48dd1a82a615 ("ixgbe: remove mac fau

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > Note quite sure. I found Thibaut submitted a patch to send > VHOST_USER_SEND_RARP request after migration is done months > ago. Thibaut, would you please elaborate it a bit more what > should be done on vhost-user backend? To construct a gratuitous > ARP request and broadcast it? By th

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Adrien Mazarguil
On Tue, Dec 15, 2015 at 08:21:14AM +0100, Thomas Monjalon wrote: > A rework was prepared by Marc Sune: > http://dpdk.org/ml/archives/dev/2015-October/026037.html > The goal is to retrieve the supported link speed of a device > and to allow 100G devices while having a consistent API. > > Signed-off

[dpdk-dev] [PATCH] doc: improve freebsd guide layout

2015-12-15 Thread John McNamara
Fixed FreeBSD Getting Started Guide rst layout to improve rendering in PDF. Signed-off-by: John McNamara --- doc/guides/freebsd_gsg/build_dpdk.rst | 205 -- doc/guides/freebsd_gsg/build_sample_apps.rst | 158 ++-- doc/guides/freebsd_gsg/install_fr

[dpdk-dev] [PATCH 2/2] ethdev: remove old flow director symbols

2015-12-15 Thread Thomas Monjalon
The API has been removed but the symbols were still declared in the map. Fixes: a421b86a4a02 ("ethdev: remove old flow director API") Signed-off-by: Thomas Monjalon --- lib/librte_ether/rte_ether_version.map | 8 1 file changed, 8 deletions(-) diff --git a/lib/librte_ether/rte_ether_v

[dpdk-dev] [PATCH 1/2] eal: remove zombie symbols

2015-12-15 Thread Thomas Monjalon
test_mp_secondary was initially added by mistake. rte_snprintf has been removed. Fixes: 9d41beed24b0 ("lib: provide initial versioning") Fixes: 3185322809c1 ("eal: remove rte_snprintf") Signed-off-by: Thomas Monjalon --- doc/guides/sample_app_ug/exception_path.rst | 2 +- doc/guides/sampl

[dpdk-dev] [PATCH 0/4 for 2.3] vhost-user live migration support

2015-12-15 Thread Pavel Fedin
Hello! > I mean I do find that qemu_annouce_self composes an ARP > broadcoast request, but it seems that I didn't catch it on > the target host. > > Something wrong, or someting I missed? To tell the truth, i don't know. I am also learning qemu internals on the fly. Indeed, i see that it shou

[dpdk-dev] [PATCH] doc: cleanup doc index files

2015-12-15 Thread Thomas Monjalon
2015-12-15 10:36, Van Haaren, Harry: > > Subject: [dpdk-dev] [PATCH] doc: cleanup doc index files > > > > Remove **Contents** and |Today| from the rst doc index files since > > these are already added automatically to PDF files and are of > > little value to the Html files where the Contents is sh

[dpdk-dev] [PATCH] doc: fix minor rst doc issues

2015-12-15 Thread Thomas Monjalon
2015-12-15 10:29, Van Haaren, Harry: > > Subject: [dpdk-dev] [PATCH] doc: fix minor rst doc issues > > > > Fix minor rst doc issues in the contributing/design.rst doc to correct > > rendering of notes and code blocks. > > > > Signed-off-by: John McNamara > > --- > > doc/guides/contributing/desi

[dpdk-dev] [PATCH] doc: fix spellings in docs

2015-12-15 Thread Thomas Monjalon
2015-12-15 10:18, Van Haaren, Harry: > > Subject: [dpdk-dev] [PATCH] doc: fix spellings in docs > > > > Fix various spellings in rst docs. > > > > Signed-off-by: John McNamara > > Acked-by: Harry van Haaren Applied, thanks

[dpdk-dev] DPDK OVS on Ubuntu 14.04# Issue's Resolved# Successfully setup DPDK OVS with vhostuser

2015-12-15 Thread Abhijeet Karve
Dear All, After seting up system boot parameters as shown below, the issue is resolved now & we are able to successfully setup openvswitch netdev-dpdk with vhostuser support. _ Setup

[dpdk-dev] VFIO no-iommu

2015-12-15 Thread Alejandro Lucero
Hi, I know a bit about VFIO implementation, have been debugging IOMMU (intel) problems, know how QEMU/KVM work about using legacy or vfio attached devices, and I'm the maintainer of a DPDK PMD recently accepted upstream which requires our particular UIO driver (not maintained upstream). So I gues

[dpdk-dev] [PATCH] doc: remove unused references from faq

2015-12-15 Thread John McNamara
The faq refers to Linux*, with an asterisk, without any equivalent note or footnote. This is a legacy from older versions of the docs. This update removes it. Signed-off-by: John McNamara --- doc/guides/faq/faq.rst | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/do

[dpdk-dev] [PATCH 3/3] driver/net/mpipe: fix a mpipe link initialization ordering issue

2015-12-15 Thread Liming Sun
Mpipe link structure is initialized in function mpipe_link_init(). Currently it's only called from the eth_dev_ops.dev_start, which caused crashes when link mgmt APIs (like promiscuous_enable) was called before eth_dev_ops.dev_start(). This submit fixed it by calling mpipe_link_init() in rte_pmd_mp

[dpdk-dev] [PATCH 2/3] driver/net/mpipe: optimize mpipe buffer return mechanism.

2015-12-15 Thread Liming Sun
This submit has changes to optimize the mpipe buffer return. When a packet is received, instead of allocating and refilling the buffer stack right away, it tracks the number of pending buffers, and use HW buffer return as an optimization when the pending number is below certain threshold, thus save

[dpdk-dev] [PATCH 1/3] driver/net/mpipe: support native build on tilegx platform.

2015-12-15 Thread Liming Sun
This submit updates the CROSS setting to support native build on TileGx platform. It also enable the combined library by default. Signed-off-by: Liming Sun --- MAINTAINERS |3 ++- config/defconfig_tile-tilegx-linuxapp-gcc |4 mk/arch/tile/rte.vars.mk

[dpdk-dev] [PATCH 0/3] Some misc fixes and optimization for the mpipe driver

2015-12-15 Thread Liming Sun
This patch serie includes some fixes/enhancements to the mpipe driver. 1. Support native build on the TileGx platform; Previously only cross build was supported. 2. Optimize the mpipe buffer return mechanism by introducing a return pending counter and doing HW buffer return if pssible. 3. M

[dpdk-dev] [PATCH] doc: cleanup doc index files

2015-12-15 Thread Van Haaren, Harry
> Subject: [dpdk-dev] [PATCH] doc: cleanup doc index files > > Remove **Contents** and |Today| from the rst doc index files since > these are already added automatically to PDF files and are of > little value to the Html files where the Contents is shown in a > sidebar. > > Signed-off-by: John Mc

[dpdk-dev] [PATCH] doc: fix minor rst doc issues

2015-12-15 Thread Van Haaren, Harry
> Subject: [dpdk-dev] [PATCH] doc: fix minor rst doc issues > > Fix minor rst doc issues in the contributing/design.rst doc to correct > rendering of notes and code blocks. > > Signed-off-by: John McNamara > --- > doc/guides/contributing/design.rst | 37 +++-- >

[dpdk-dev] [PATCH] doc: fix spellings in docs

2015-12-15 Thread Van Haaren, Harry
> Subject: [dpdk-dev] [PATCH] doc: fix spellings in docs > > Fix various spellings in rst docs. > > Signed-off-by: John McNamara > --- > doc/guides/contributing/coding_style.rst | 2 +- > doc/guides/contributing/versioning.rst | 2 +- > doc/guides/cryptodevs/

[dpdk-dev] [PATCH] doc: cleanup doc index files

2015-12-15 Thread John McNamara
Remove **Contents** and |Today| from the rst doc index files since these are already added automatically to PDF files and are of little value to the Html files where the Contents is shown in a sidebar. Signed-off-by: John McNamara --- doc/guides/faq/index.rst| 2 -- doc/guides/freebs

[dpdk-dev] [PATCH] doc: fix minor rst doc issues

2015-12-15 Thread John McNamara
Fix minor rst doc issues in the contributing/design.rst doc to correct rendering of notes and code blocks. Signed-off-by: John McNamara --- doc/guides/contributing/design.rst | 37 +++-- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/doc/guides/co

[dpdk-dev] [RFC 3/3] doc: announce ABI change for filtering support

2015-12-15 Thread Thomas Monjalon
2015-12-15 14:10, Rahul Lakkireddy: > Hi Thomas, > > I am preparing a v2 of this series where I will be accomodating some > more fields to be considered for filtering. However, if the overall > approach seems ok to everyone then, should I submit a separate patch > for this ABI change announcement

[dpdk-dev] VFIO no-iommu

2015-12-15 Thread Alex Williamson
On Tue, 2015-12-15 at 13:43 +, O'Driscoll, Tim wrote: > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alex > > Williamson > > Sent: Friday, December 11, 2015 11:03 PM > > To: Vincent JARDIN; dev at dpdk.org > > Subject: Re: [dpdk-dev] VFIO no-iommu > >

[dpdk-dev] [PATCH v3] doc: announce ABI change for struct rte_eth_conf

2015-12-15 Thread Ivan Boule
On 12/14/2015 08:48 AM, Jijiang Liu wrote: > In current codes, tunnel configuration information is not stored in a device > configuration, and it will get nothing if application want to retrieve tunnel > config, so I think it is necessary to add rte_eth_dev_tunnel_configure() > function is to do

[dpdk-dev] releases scheduling

2015-12-15 Thread Jay Rolette
+100 for the LTS One of the bigger challenges for products using DPDK is that there is so much change going in each release with very limited testing. Trying to even remotely keep up is too risky. We end up back-porting various fixes and enhancements to whatever version we are on (1.6rc2 currently

[dpdk-dev] [PATCH] doc: fix spellings in docs

2015-12-15 Thread John McNamara
Fix various spellings in rst docs. Signed-off-by: John McNamara --- doc/guides/contributing/coding_style.rst | 2 +- doc/guides/contributing/versioning.rst | 2 +- doc/guides/cryptodevs/aesni_mb.rst | 2 +- doc/guides/nics/bnx2x.rst

[dpdk-dev] [PATCH 2/2] ethdev: remove old flow director symbols

2015-12-15 Thread Neil Horman
On Tue, Dec 15, 2015 at 01:41:53PM +0200, Panu Matilainen wrote: > On 12/15/2015 12:47 PM, Thomas Monjalon wrote: > >The API has been removed but the symbols were still declared in the map. > > > >Fixes: a421b86a4a02 ("ethdev: remove old flow director API") > > > >Signed-off-by: Thomas Monjalon >

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Olga Shern
Acked-by: Olga Shern -Original Message- From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] Sent: Tuesday, December 15, 2015 9:21 AM To: dev at dpdk.org Cc: Marc Sune ; Olga Shern ; Matej Vido Subject: [PATCH] doc: announce ABI change for link speed A rework was prepared by Marc

[dpdk-dev] [PATCH] scripts: fix abi-validator regression when revision is a tag

2015-12-15 Thread Neil Horman
On Tue, Dec 15, 2015 at 03:55:15PM +0200, Panu Matilainen wrote: > Commit 9cbae2aa64eb managed to break the only previously supported > case where a tag is used as a revision, due to git show output > differing between tags and other objects. The hash is on the last > line of the output in both cas

[dpdk-dev] [PATCH] doc: announce ABI change for link speed

2015-12-15 Thread Thomas Monjalon
A rework was prepared by Marc Sune: http://dpdk.org/ml/archives/dev/2015-October/026037.html The goal is to retrieve the supported link speed of a device and to allow 100G devices while having a consistent API. Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst | 3 +++ 1 fi

[dpdk-dev] [PATCH] doc: announce ABI change for struct rte_eth_tunnel_filter_conf

2015-12-15 Thread Thomas Monjalon
> > Signed-off-by: Jingjing Wu > Acked-by: Wenzhuo Lu > Acked-by: Helin Zhang > Acked-by: Thomas Monjalon Applied, thanks

[dpdk-dev] [PATCH] doc: announce ABI change for struct rte_eth_fdir_flow

2015-12-15 Thread Thomas Monjalon
> > Signed-off-by: Jingjing Wu > Acked-by: Wenzhuo Lu > Acked-by: Helin Zhang > Acked-by: Andrey Chilikin Applied, thanks

[dpdk-dev] [PATCH 2/2] doc: announce ABI change for RETA configuration

2015-12-15 Thread Thomas Monjalon
> > Signed-off-by: Nelio Laranjeiro > Acked-by: Wenzhuo Lu > Acked-by: Thomas Monjalon > Acked-by: Olga Shern Applied, thanks

  1   2   >