Re: [dpdk-dev] [PATCH v2] app/testpmd: support non contiguous socket ids

2017-05-07 Thread Thomas Monjalon
03/05/2017 15:44, Shahaf Shuler: > + printf("Invalid socket id, options are: "); > + for (i = 0; i < num_sockets; i++) { > + printf("%u%s", socket_ids[i], > + (i == num_sockets - 1) ? "\n" : ","); [...]

Re: [dpdk-dev] [PATCH v2] doc: add VF support statement

2017-05-07 Thread Thomas Monjalon
03/05/2017 08:21, Qiming Yang: > This patch adds two note in doc build_dpdk, suggests DPDK user > don't use ``vfio-pci`` and ``uio_pci_generic`` module to create > virtual functions(VFs). > > Signed-off-by: Qiming Yang Applied, thanks

Re: [dpdk-dev] [PATCH 1/2] usertools: fix adding devices of same class

2017-05-07 Thread Thomas Monjalon
04/05/2017 12:48, Jerin Jacob: > From: Guduri Prathyusha > > If multiple devices of same class are added to a device type, > only devices that match first device listed in device type list are > processed. > > Fixing it in device_type_match() by returning false after iterating > through all the

Re: [dpdk-dev] [PATCH 2/2] doc: update mlx4 supported OFED and FW

2017-05-07 Thread Thomas Monjalon
05/05/2017 12:02, Adrien Mazarguil: > On Wed, May 03, 2017 at 10:28:49AM +0300, Shahaf Shuler wrote: > > Update the supported Mellanox OFED and FW versions. > > > > Signed-off-by: Shahaf Shuler > > Acked-by: Adrien Mazarguil Series squashed and applied, thanks

Re: [dpdk-dev] [PATCH v2] net/bnx2x: update document for PMD usage

2017-05-07 Thread Thomas Monjalon
03/05/2017 01:57, Rasesh Mody: > Correct CONFIG_RTE_LIBRTE_BNX2X_PMD config file option and add a note > about external zlib dependency for loading the firmware image. > > Signed-off-by: Rasesh Mody Fixes: ce9b8bb8b998 ("config: disable bnx2x driver") Cc: sta...@dpdk.org Applied, thanks

Re: [dpdk-dev] [PATCH] doc: fix directory err in virtio guide

2017-05-07 Thread Thomas Monjalon
> > Signed-off-by: Yong Wang > > Acked-by: John McNamara Applied and squashed with http://dpdk.org/patch/24050, thanks

Re: [dpdk-dev] [PATCH v1] doc: fix usertools path in pvp benchmark doc

2017-05-07 Thread Thomas Monjalon
03/05/2017 14:26, Maxime Coquelin: > On 05/02/2017 02:51 PM, John McNamara wrote: > > Update doc to the new dpdk-devbind.py usertools path. > > > > Fixes: 58a2551a160f ("doc: introduce PVP reference benchmark") > > > > Signed-off-by: John McNamara > > Reviewed-by: Maxime Coquelin Applied and

[dpdk-dev] [PATCH v3] app/testpmd: support non contiguous socket ids

2017-05-07 Thread Shahaf Shuler
The test assumes the socket ids are contiguous. This is not necessarily the case on all servers and may cause mempool creation to fail. Fixing it by detecting the list of valid socket ids and use it for the mempool creation. Fixes: 7acf894d07d1 ("app/testpmd: detect numa socket count") CC: sta..

[dpdk-dev] [PATCH 0/2] various fixes for eal/bsd

2017-05-07 Thread Tiwei Bie
Tiwei Bie (2): eal/bsd: fix ioport write operation eal/bsd: fix the read operation on PCI configuration space lib/librte_eal/bsdapp/eal/eal_pci.c | 28 1 file changed, 16 insertions(+), 12 deletions(-) -- 2.12.1

[dpdk-dev] [PATCH 1/2] eal/bsd: fix ioport write operation

2017-05-07 Thread Tiwei Bie
The first param of out*() on FreeBSD is port, and the second one is data. But they are reversed in DPDK. This patch fixes it. Fixes: 756ce64b1ecd ("eal: introduce PCI ioport API") Cc: sta...@dpdk.org Signed-off-by: Tiwei Bie --- lib/librte_eal/bsdapp/eal/eal_pci.c | 6 +++--- 1 file changed, 3

[dpdk-dev] [PATCH 2/2] eal/bsd: fix the read operation on PCI configuration space

2017-05-07 Thread Tiwei Bie
Some drivers (such as virtio) may need to read more than 4 bytes data from PCI configuration space via rte_eal_pci_read_config(). But it will return with an error on FreeBSD when the expected data length is bigger than the size of pi.pi_data whose type is u_int32_t. This patch removes this limitati

Re: [dpdk-dev] [PATCH] doc: fix incorrect indexing

2017-05-07 Thread Thomas Monjalon
02/05/2017 14:26, Mcnamara, John: > From: Shreyansh Jain [mailto:shreyansh.j...@nxp.com] > > Because of extra space before each list item, indexing numbers generated > > by Sphinx were same. > > > > Signed-off-by: Shreyansh Jain > > Acked-by: John McNamara Applied, thanks

Re: [dpdk-dev] [PATCH v1 1/1] app/procinfo: buffer null termination fix.

2017-05-07 Thread Bruce Richardson
On Sat, May 06, 2017 at 11:03:47AM +0200, Thomas Monjalon wrote: > 21/04/2017 17:06, Roman Korynkevych: > > Coverity issue: 143252 > > Fixes: 2deb6b5246d7706448d070335b329d1acb754cee ("app/procinfo: add > > collectd format and host id") > > Cc: sta...@dpdk.org > > > > Signed-off-by: Roman Korynke

Re: [dpdk-dev] [PATCH] doc: factorize overview table CSS

2017-05-07 Thread Thomas Monjalon
> > There were several tables in NIC and crypto guides with the same copy- > > pasted CSS addition. > > It is moved into one unique place: conf.py. > > > > Signed-off-by: Thomas Monjalon > > Acked-by: John McNamara Applied

Re: [dpdk-dev] [PATCH] doc: add known issue about l3fwd-power

2017-05-07 Thread Thomas Monjalon
> > Because of UIO only support one interrupt, when insmod ``igb_uio`` and > > running l3fwd-power APP, link status getting doesn't work properly. > > > > Signed-off-by: Qiming Yang > > > Acked-by: John McNamara Applied, thanks

Re: [dpdk-dev] [PATCH v1] doc: Merge l3fwd and l3fwd-acl documentation files

2017-05-07 Thread Thomas Monjalon
Hi, 25/04/2017 20:39, Ravi Kerur: > Merge relevant contents of l3fwd and l3fwd-acl documentation. > Modify l3fwd document with ACL specific information. > Remove l3fwd-acl documentation file. > > Signed-off-by: Ravi Kerur > --- > doc/guides/sample_app_ug/img/ipv4_hash_rule.svg| 158

[dpdk-dev] [PATCH] net/qede: fix RSS table entries for 100G adapter

2017-05-07 Thread Rasesh Mody
With the change in base APIs the logic for 100G handling needs to be adjusted to pass cid values instead for queue ids. The current API works assuming its queue id. Fixes: 69d7ba88f1a1 ("net/qede/base: use L2-handles for RSS configuration") Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_e

[dpdk-dev] [dpdk-announce] release candidate 17.05-rc4

2017-05-07 Thread Thomas Monjalon
A new DPDK release candidate is ready for testing: http://dpdk.org/browse/dpdk/tag/?id=v17.05-rc4 If there is no major bug discovered, there will be no RC5. >From now on, each patch accepted in 17.05 is considered as an exception. If you think your patch is exceptional, please insist. It

Re: [dpdk-dev] [PATCH v2] app/testpmd: support non contiguous socket ids

2017-05-07 Thread Wu, Jingjing
> -Original Message- > From: Shahaf Shuler [mailto:shah...@mellanox.com] > Sent: Sunday, May 7, 2017 2:06 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Thomas Monjalon ; > sta...@dpdk.org > Subject: RE: [PATCH v2] app/testpmd: support non contiguous socket ids > > Saturday, May 6, 2017 4:41

Re: [dpdk-dev] [PATCH] app/testpmd: print all or no events

2017-05-07 Thread Wu, Jingjing
> -Original Message- > From: Gaetan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Sunday, May 7, 2017 6:36 AM > To: dev@dpdk.org > Cc: Wu, Jingjing > Subject: [PATCH] app/testpmd: print all or no events > > Adds the "all" option to the print-event and mask-event parameters. This > opti

Re: [dpdk-dev] [PATCH v7 3/3] app/testpmd: add a command to add many MAC addrs

2017-05-07 Thread Wu, Jingjing
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, May 5, 2017 10:24 PM > To: Dai, Wei > Cc: dev@dpdk.org; Lu, Wenzhuo ; > harish.pa...@cavium.com; rasesh.m...@cavium.com; > stephen.h...@broadcom.com; ajit.khapa...@broadcom.com; Zhang, Helin > ; Ana

[dpdk-dev] Fwd: Sharing tables among pipelines

2017-05-07 Thread Nidhia Varghese
Hi, Any comments on this question? Thanks, Nidhia -- Forwarded message -- From: Nidhia Varghese Date: Thu, May 4, 2017 at 3:43 PM Subject: Sharing tables among pipelines To: dev@dpdk.org, us...@dpdk.org Hi, For my pipeline application, I want to share same table between two d

Re: [dpdk-dev] [RFC PATCH 00/11] net/virtio: packed ring layout

2017-05-07 Thread Yuanhan Liu
On Fri, May 05, 2017 at 09:57:11AM -0400, Jens Freimann wrote: > Hi Yuanhan, > > I rebased your patches on next-virtio/for-testing to current master, > made sure every patch compiles and still works. Thanks for that. > I'm implementing the receive path now to eventually get some benchmark > res

Re: [dpdk-dev] [dpdk-users] Sharing tables among pipelines

2017-05-07 Thread zhilong zheng
Hi Nidia, I have tried something similar to yours. Actually, I share some hash tables among different/independent processes. For my application, I extend the codebase from DPDK Sample Applications 23.1.4(http://dpdk.org/doc/guides-16.07/sample_app_ug/multi_process.html

Re: [dpdk-dev] [PATCH v7 3/3] app/testpmd: add a command to add many MAC addrs

2017-05-07 Thread Wu, Jingjing
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Wu, Jingjing > Sent: Monday, May 8, 2017 9:02 AM > To: Thomas Monjalon ; Dai, Wei > Cc: dev@dpdk.org; Lu, Wenzhuo ; > harish.pa...@cavium.com; rasesh.m...@cavium.com; > stephen.h...@broadcom.com; ajit.khapa...@br