[dpdk-dev] [PATCH] doc:announce ABI changes planned for struct rte_eth_dev to support up to 1024 queues per port

2015-07-11 Thread Thomas Monjalon
> > The significant ABI change of all shared libraries is planned for struct > > rte_eth_dev to support up to 1024 queues per port which will be taken > > effect from release 2.2. > > > > Signed-off-by: Jijiang Liu [...] > > Deprecation Notices > > --- > > +* Significant ABI c

[dpdk-dev] [PATCH v2] doc: Fix doxygen comments of rte_eth_dev_close() and rte_eth_dev_detach()

2015-07-11 Thread Thomas Monjalon
2015-07-09 17:19, Tetsuya Mukawa: > The patch fixes doxygen comments of below functions. > - rte_eth_dev_close() >Add description about when the function can be called and also about >what kind of resources will be freed. > - rte_eth_dev_detach() >Add description about when the functi

[dpdk-dev] [PATCH v6 0/7] Cuckoo hash - part 3 of Cuckoo hash

2015-07-11 Thread Pablo de Lara
This patchset is to replace the existing hash library with a more efficient and functional approach, using the Cuckoo hash method to deal with collisions. This method is based on using two different hash functions to have two possible locations in the hash table where an entry can be. So, if a buck

[dpdk-dev] [PATCH v6 2/7] hash: add new function rte_hash_reset

2015-07-11 Thread Pablo de Lara
Added reset function to be able to empty the table, without having to destroy and create it again. Signed-off-by: Pablo de Lara --- app/test/test_hash.c | 4 +--- app/test/test_hash_perf.c| 12 +++- lib/librte_hash/rte_cuckoo_hash.c| 21 ++

[dpdk-dev] [PATCH v6 3/7] hash: add new functionality to store data in hash table

2015-07-11 Thread Pablo de Lara
Usually hash tables not only store keys, but also data associated to them. In order to maintain the existing API, the old functions will still return the index where the key was stored. The new functions will return the data associated to that key. In the case of the lookup_bulk function, it will r

[dpdk-dev] [PATCH v6 4/7] hash: add iterate function

2015-07-11 Thread Pablo de Lara
Since now rte_hash structure is private, a new function has been added to let the user iterate through the hash table, returning next key and data associated on each iteration, plus the position where they were stored. Signed-off-by: Pablo de Lara --- app/test/test_hash.c | 66 ++

[dpdk-dev] [PATCH v6 5/7] MAINTAINERS: claim responsability for hash library

2015-07-11 Thread Pablo de Lara
Signed-off-by: Pablo de Lara --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 5476a73..75a27e9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -345,6 +345,7 @@ F: doc/guides/sample_app_ug/l3_forward_access_ctrl.rst Hashes M: Bruce Richardson +M

[dpdk-dev] [PATCH v6 1/7] hash: replace existing hash library with cuckoo hash implementation

2015-07-11 Thread Pablo de Lara
This patch replaces the existing hash library with another approach, using the Cuckoo Hash method to resolve collisions (open addressing), which pushes items from a full bucket when a new entry tries to be added in it, storing the evicted entry in an alternative location, using a secondary hash fun

[dpdk-dev] [PATCH v6 6/7] doc: announce ABI change of librte_hash

2015-07-11 Thread Pablo de Lara
Two of the macros in rte_hash.h are now deprecated, so this patch adds notice that they will be removed in 2.2. Signed-off-by: Pablo de Lara --- doc/guides/rel_notes/abi.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst index 9d60

[dpdk-dev] [PATCH v6 7/7] doc: update hash documentation

2015-07-11 Thread Pablo de Lara
Updates hash library documentation, reflecting the new implementation changes. Signed-off-by: Pablo de Lara --- doc/guides/prog_guide/hash_lib.rst | 138 + doc/guides/prog_guide/index.rst| 4 ++ 2 files changed, 129 insertions(+), 13 deletions(-) diff -

[dpdk-dev] [PATCH v7 0/7] Cuckoo hash - part 3 of Cuckoo hash

2015-07-11 Thread Pablo de Lara
This patchset is to replace the existing hash library with a more efficient and functional approach, using the Cuckoo hash method to deal with collisions. This method is based on using two different hash functions to have two possible locations in the hash table where an entry can be. So, if a buck

[dpdk-dev] [PATCH v7 1/7] hash: replace existing hash library with cuckoo hash implementation

2015-07-11 Thread Pablo de Lara
This patch replaces the existing hash library with another approach, using the Cuckoo Hash method to resolve collisions (open addressing), which pushes items from a full bucket when a new entry tries to be added in it, storing the evicted entry in an alternative location, using a secondary hash fun

[dpdk-dev] [PATCH v7 2/7] hash: add new function rte_hash_reset

2015-07-11 Thread Pablo de Lara
Added reset function to be able to empty the table, without having to destroy and create it again. Signed-off-by: Pablo de Lara --- app/test/test_hash.c | 4 +--- app/test/test_hash_perf.c| 12 +++- lib/librte_hash/rte_cuckoo_hash.c| 21 ++

[dpdk-dev] [PATCH v7 3/7] hash: add new functionality to store data in hash table

2015-07-11 Thread Pablo de Lara
Usually hash tables not only store keys, but also data associated to them. In order to maintain the existing API, the old functions will still return the index where the key was stored. The new functions will return the data associated to that key. In the case of the lookup_bulk function, it will r

[dpdk-dev] [PATCH v7 4/7] hash: add iterate function

2015-07-11 Thread Pablo de Lara
Since now rte_hash structure is private, a new function has been added to let the user iterate through the hash table, returning next key and data associated on each iteration, plus the position where they were stored. Signed-off-by: Pablo de Lara --- app/test/test_hash.c | 66 ++

[dpdk-dev] [PATCH v7 5/7] MAINTAINERS: claim responsability for hash library

2015-07-11 Thread Pablo de Lara
Signed-off-by: Pablo de Lara --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 5476a73..75a27e9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -345,6 +345,7 @@ F: doc/guides/sample_app_ug/l3_forward_access_ctrl.rst Hashes M: Bruce Richardson +M

[dpdk-dev] [PATCH v7 6/7] doc: announce ABI change of librte_hash

2015-07-11 Thread Pablo de Lara
Two of the macros in rte_hash.h are now deprecated, so this patch adds notice that they will be removed in 2.2. Signed-off-by: Pablo de Lara --- doc/guides/rel_notes/abi.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/rel_notes/abi.rst b/doc/guides/rel_notes/abi.rst index 9d60

[dpdk-dev] [PATCH v7 7/7] doc: update hash documentation

2015-07-11 Thread Pablo de Lara
Updates hash library documentation, reflecting the new implementation changes. Signed-off-by: Pablo de Lara --- doc/guides/prog_guide/hash_lib.rst | 138 + doc/guides/prog_guide/index.rst| 4 ++ 2 files changed, 129 insertions(+), 13 deletions(-) diff -

[dpdk-dev] [PATCH] eal: fix vfio device never works.

2015-07-11 Thread Tetsuya Mukawa
The patch fixes vfio initialization issue introduced by below patch. - Commit 35b3313e322b ("pci: merge mapping functions for linux and bsd") Root cause is that VFIO_PRESENT is inaccessible in eal common level. To fix it, remove pci_map/unmap_device from common code, then implement in linux and b

[dpdk-dev] [PATCH] BugFix: VFIO never works

2015-07-11 Thread Tetsuya Mukawa
On 2015/07/10 21:16, Thomas Monjalon wrote: > 2015-07-10 12:38, Bruce Richardson: >> On Fri, Jul 10, 2015 at 01:25:49PM +0200, David Marchand wrote: >>> On Fri, Jul 10, 2015 at 10:34 AM, Tetsuya Mukawa >>> wrote: On 2015/07/10 16:47, Michael Qiu wrote: > Commit 35b3313e322b ("pci: merge

[dpdk-dev] [PATCH] mk: enable next abi in static libs

2015-07-11 Thread Neil Horman
On Fri, Jul 10, 2015 at 04:07:53PM +, Mcnamara, John wrote: > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Neil Horman > > Sent: Tuesday, July 7, 2015 2:44 PM > > To: Thomas Monjalon > > Cc: dev at dpdk.org > > Subject: Re: [dpdk-dev] [PATCH] mk: enab

[dpdk-dev] [PATCH v5 4/5] vhost: eventfd_link: replace copy-pasted sys_close

2015-07-11 Thread Pavel Boldin
Xie, All, Please find my comments intermixed below. On Fri, Jul 10, 2015 at 6:42 PM, Xie, Huawei wrote: > Don't know why previous mail get messed. > > On 7/10/2015 10:50 PM, Pavel Boldin wrote: > Xie, > > Regarding the patches: > 1. The replaced code in fourth patch is checked to be a copy-past