Re: [dpdk-dev] [PATCH v4 8/8] doc: add guide to use virtio_user as exceptional path

2017-01-21 Thread Tan, Jianfeng
On 1/22/2017 8:46 AM, Aws Ismail wrote: On Jan 13, 2017 9:42 AM, "Jianfeng Tan" > wrote: Signed-off-by: Jianfeng Tan mailto:jianfeng@intel.com>> --- .../img/virtio_user_as_excpetional_path.png| Bin 0 -> 38600 bytes doc/guides/

Re: [dpdk-dev] [PATCH v3 2/3] net/e1000: e1000 igb support to free consumed buffers

2017-01-21 Thread Lu, Wenzhuo
Hi Billy, > -Original Message- > From: Billy McFall [mailto:bmcf...@redhat.com] > Sent: Saturday, January 21, 2017 12:01 AM > To: thomas.monja...@6wind.com; Lu, Wenzhuo > Cc: dev@dpdk.org; Billy McFall > Subject: [PATCH v3 2/3] net/e1000: e1000 igb support to free consumed > buffers > > A

Re: [dpdk-dev] [PATCH] ethdev: fix wrong memset

2017-01-21 Thread Yuanhan Liu
On Fri, Jan 20, 2017 at 03:27:43PM +, Ferruh Yigit wrote: > On 1/20/2017 11:21 AM, Ferruh Yigit wrote: > > On 1/20/2017 8:04 AM, Yuanhan Liu wrote: > >> Fix an silly error by auto-complete while managing the merge conflicts. > >> It's the eth_dev_data (but not eth_dev) entry should be memset. >

[dpdk-dev] [PATCH v4] doc: add known uio_pci_generic issue for i40e

2017-01-21 Thread Jeff Guo
When bind the ``uio_pci_generic`` module in X710/XL710/XXV710, the result is failed. The ``uio_pci_generic`` module is not supported by X710/XL710/XXV710. Signed-off-by: Jeff Guo Acked-by: Jingjing Wu --- v4: modify the signed-off name to be consistent and fix make doc issue. v3: add related lin

[dpdk-dev] [PATCH] mk: parallelize make config

2017-01-21 Thread Ferruh Yigit
make config dependency resolving was always running serial, parallelize it for better performance. $ time make T=x86_64-native-linuxapp-gcc config real0m12.633s $ time make -j8 T=x86_64-native-linuxapp-gcc config real0m1.826s Signed-off-by: Ferruh Yigit --- mk/internal/rte.depdirs-post

[dpdk-dev] [PATCH v4] doc: add known uio_pci_generic issue for i40e

2017-01-21 Thread Jeff Guo
When bind the "uio_pci_generic" module in X710/XL710/XXV710, the result is failed. The "uio_pci_generic" module is not supported by X710/XL710/XXV710. Signed-off-by: Jeff Guo Acked-by: Jingjing Wu --- v4: modify the signed-off name to be consistent, fix quotes and make doc issue. v3: add related

Re: [dpdk-dev] [PATCH v4 8/8] doc: add guide to use virtio_user as exceptional path

2017-01-21 Thread Aws Ismail
On Jan 13, 2017 9:42 AM, "Jianfeng Tan" wrote: Signed-off-by: Jianfeng Tan --- .../img/virtio_user_as_excpetional_path.png| Bin 0 -> 38600 bytes doc/guides/prog_guide/index.rst| 1 + .../prog_guide/virtio_user_as_exceptional_path.rst | 104 + 3

[dpdk-dev] Bug report: rte_table_hash_ext incorrectly compares signatures

2017-01-21 Thread Solal Pirelli
Hi, I found a bug in the rte_table_hash_ext implementation, hopefully this mailing list is the right place to report it. It's pretty simple: in `rte_table_hash_ext.c` (using `add` as an example; the bug is also elsewhere): - line 53 declares the bucket signatures as arrays of `uint16_t` - line 28

Re: [dpdk-dev] [PATCH 02/15] eventdev: add APIs for extended stats

2017-01-21 Thread Jerin Jacob
On Mon, Jan 16, 2017 at 03:40:42PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Add in APIs for extended stats so that eventdev implementations can report > out information on their internal state. The APIs are based on, but not > identical to, the equivalent ethdev functions. Ove

Re: [dpdk-dev] [PATCH 00/15] next-eventdev: event/sw Software Eventdev

2017-01-21 Thread Jerin Jacob
On Mon, Jan 16, 2017 at 03:40:40PM +, Harry van Haaren wrote: > The following patchset adds software eventdev implementation > to the next-eventdev tree, and applies to current git HEAD. > > This implementation is based on the previous software eventdev > RFC patchset[1], updated to integrate

Re: [dpdk-dev] [PATCH 01/15] eventdev: remove unneeded dependencies

2017-01-21 Thread Jerin Jacob
On Mon, Jan 16, 2017 at 03:40:41PM +, Harry van Haaren wrote: > From: Bruce Richardson > > Since eventdev uses event structures rather than working directly on > mbufs, there is no actual dependencies on the mbuf library. The > inclusion of an mbuf pointer element inside the event itself does

Re: [dpdk-dev] [PATCH] mbuf: remove redundant line in rte_pktmbuf_attach

2017-01-21 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ilya Matveychikov > Sent: Saturday, January 21, 2017 3:08 PM > To: Yigit, Ferruh > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] mbuf: remove redundant line in > rte_pktmbuf_attach > > > > On Jan 20, 2017

Re: [dpdk-dev] [PATCH] mbuf: remove redundant line in rte_pktmbuf_attach

2017-01-21 Thread Ilya Matveychikov
> On Jan 20, 2017, at 4:08 PM, Ferruh Yigit wrote: > > On 1/20/2017 12:19 AM, Ilya Matveychikov wrote: >> mi->next will be assigned to NULL few lines later, trivial patch >> >> Signed-off-by: Ilya V. Matveychikov >> --- >> lib/librte_mbuf/rte_mbuf.h | 1 - >> 1 file changed, 1 deletion(-) >> >