> > 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
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
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
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 ++
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
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 ++
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
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
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
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 -
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
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
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 ++
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
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 ++
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
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
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 -
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
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
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
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
22 matches
Mail list logo