DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v2] announce ABI change for librte_table
@ 2015-07-23 10:59 Cristian Dumitrescu
  2015-07-23 11:05 ` Singh, Jasvinder
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Cristian Dumitrescu @ 2015-07-23 10:59 UTC (permalink / raw)
  To: dev

v2 changes:
-changed item on LPM table to add LPM IPv6
-removed item for ACL table and replaced with item on table ops 
-added item for hash tables

Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
 doc/guides/rel_notes/deprecation.rst |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 5330d3b..677f111 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -35,3 +35,13 @@ Deprecation Notices
 * The following fields have been deprecated in rte_eth_stats:
   imissed, ibadcrc, ibadlen, imcasts, fdirmatch, fdirmiss,
   tx_pause_xon, rx_pause_xon, tx_pause_xoff, rx_pause_xoff
+
+* librte_table (rte_table_lpm.h, rte_table_lpm_ipv6.h): A new parameter to hold
+  the table name will be added to the LPM table parameter structure.
+
+* librte_table (rte_table.h): New functions for table entry bulk add/delete will
+  be added to the table operations structure.
+
+* librte_table (rte_table_hash.h): Key mask parameter will be added to the hash
+  table parameter structure for 8-byte key and 16-byte key extendible bucket and
+  LRU tables.
-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
  2015-07-23 10:59 [dpdk-dev] [PATCH v2] announce ABI change for librte_table Cristian Dumitrescu
@ 2015-07-23 11:05 ` Singh, Jasvinder
  2015-08-15 21:48   ` Thomas Monjalon
  2015-07-23 11:07 ` Mrzyglod, DanielX T
  2015-07-23 11:34 ` Gajdzica, MaciejX T
  2 siblings, 1 reply; 5+ messages in thread
From: Singh, Jasvinder @ 2015-07-23 11:05 UTC (permalink / raw)
  To: Dumitrescu, Cristian, dev



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Cristian Dumitrescu
> Sent: Thursday, July 23, 2015 12:00 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
> 
> v2 changes:
> -changed item on LPM table to add LPM IPv6 -removed item for ACL table
> and replaced with item on table ops -added item for hash tables
> 
> Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
> ---

Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
  2015-07-23 10:59 [dpdk-dev] [PATCH v2] announce ABI change for librte_table Cristian Dumitrescu
  2015-07-23 11:05 ` Singh, Jasvinder
@ 2015-07-23 11:07 ` Mrzyglod, DanielX T
  2015-07-23 11:34 ` Gajdzica, MaciejX T
  2 siblings, 0 replies; 5+ messages in thread
From: Mrzyglod, DanielX T @ 2015-07-23 11:07 UTC (permalink / raw)
  To: Dumitrescu, Cristian, dev

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Cristian Dumitrescu
> Sent: Thursday, July 23, 2015 1:00 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
> 
> v2 changes:
> -changed item on LPM table to add LPM IPv6
> -removed item for ACL table and replaced with item on table ops
> -added item for hash tables
> 
> Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
> ---
>  doc/guides/rel_notes/deprecation.rst |   10 ++++++++++
>  1 files changed, 10 insertions(+), 0 deletions(-)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 5330d3b..677f111 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -35,3 +35,13 @@ Deprecation Notices
>  * The following fields have been deprecated in rte_eth_stats:
>    imissed, ibadcrc, ibadlen, imcasts, fdirmatch, fdirmiss,
>    tx_pause_xon, rx_pause_xon, tx_pause_xoff, rx_pause_xoff
> +
> +* librte_table (rte_table_lpm.h, rte_table_lpm_ipv6.h): A new parameter to
> hold
> +  the table name will be added to the LPM table parameter structure.
> +
> +* librte_table (rte_table.h): New functions for table entry bulk add/delete will
> +  be added to the table operations structure.
> +
> +* librte_table (rte_table_hash.h): Key mask parameter will be added to the hash
> +  table parameter structure for 8-byte key and 16-byte key extendible bucket
> and
> +  LRU tables.
> --
> 1.7.4.1

Acked-by: Daniel Mrzyglod <danielx.t.mrzyglod@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
  2015-07-23 10:59 [dpdk-dev] [PATCH v2] announce ABI change for librte_table Cristian Dumitrescu
  2015-07-23 11:05 ` Singh, Jasvinder
  2015-07-23 11:07 ` Mrzyglod, DanielX T
@ 2015-07-23 11:34 ` Gajdzica, MaciejX T
  2 siblings, 0 replies; 5+ messages in thread
From: Gajdzica, MaciejX T @ 2015-07-23 11:34 UTC (permalink / raw)
  To: Dumitrescu, Cristian, dev

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Cristian Dumitrescu
> Sent: Thursday, July 23, 2015 1:00 PM
> To: dev@dpdk.org
> Subject: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
> 
> v2 changes:
> -changed item on LPM table to add LPM IPv6 -removed item for ACL table and
> replaced with item on table ops -added item for hash tables
> 
> Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
> ---

Acked-by: Maciej Gajdzica <maciejx.t.gajdzica@intel.com>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [dpdk-dev] [PATCH v2] announce ABI change for librte_table
  2015-07-23 11:05 ` Singh, Jasvinder
@ 2015-08-15 21:48   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2015-08-15 21:48 UTC (permalink / raw)
  To: Dumitrescu, Cristian; +Cc: dev

> > v2 changes:
> > -changed item on LPM table to add LPM IPv6 -removed item for ACL table
> > and replaced with item on table ops -added item for hash tables
> > 
> > Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
> > ---
> 
> Acked-by: Jasvinder Singh <jasvinder.singh@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-15 21:49 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-23 10:59 [dpdk-dev] [PATCH v2] announce ABI change for librte_table Cristian Dumitrescu
2015-07-23 11:05 ` Singh, Jasvinder
2015-08-15 21:48   ` Thomas Monjalon
2015-07-23 11:07 ` Mrzyglod, DanielX T
2015-07-23 11:34 ` Gajdzica, MaciejX T

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).