DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: annouce ABI change for RSS configuraiton structure
@ 2018-02-04  7:24 Xueming Li
  2018-02-06  7:38 ` [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure Xueming Li
  0 siblings, 1 reply; 6+ messages in thread
From: Xueming Li @ 2018-02-04  7:24 UTC (permalink / raw)
  To: Thomas Monjalon, Neil Horman; +Cc: Xueming Li, dev, Shahaf Shuler

Update deprecation notice for the new level field of rte_eth_rss_conf.

Link: http://www.dpdk.org/dev/patchwork/patch/31891

Signed-off-by: Xueming Li <xuemingl@mellanox.com>
---
 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index d59ad5988..cdb7f6ba2 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -59,3 +59,7 @@ Deprecation Notices
   be added between the producer and consumer structures. The size of the
   structure and the offset of the fields will remain the same on
   platforms with 64B cache line, but will change on other platforms.
+  
+* ethdev: A new rss level field planned in 18.05.
+  The new API add level field to ``rte_eth_rss_conf`` to enable a choice
+  of RSS hash calculation on outer or inner header of tunneled packet.
-- 
2.13.3

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

* [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure
  2018-02-04  7:24 [dpdk-dev] [PATCH] doc: annouce ABI change for RSS configuraiton structure Xueming Li
@ 2018-02-06  7:38 ` Xueming Li
  2018-02-13  6:52   ` Shahaf Shuler
  0 siblings, 1 reply; 6+ messages in thread
From: Xueming Li @ 2018-02-06  7:38 UTC (permalink / raw)
  To: Thomas Monjalon, Neil Horman; +Cc: Xueming Li, dev, Shahaf Shuler

Update deprecation notice for the new rss_level field of
rte_eth_rss_conf.

Link: http://www.dpdk.org/dev/patchwork/patch/31891

Signed-off-by: Xueming Li <xuemingl@mellanox.com>
---
 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index d59ad5988..4bfce3bd7 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -59,3 +59,7 @@ Deprecation Notices
   be added between the producer and consumer structures. The size of the
   structure and the offset of the fields will remain the same on
   platforms with 64B cache line, but will change on other platforms.
+
+* ethdev: A new rss level field planned in 18.05.
+  The new API add rss_level field to ``rte_eth_rss_conf`` to enable a choice
+  of RSS hash calculation on outer or inner header of tunneled packet.
-- 
2.13.3

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

* Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure
  2018-02-06  7:38 ` [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure Xueming Li
@ 2018-02-13  6:52   ` Shahaf Shuler
  2018-02-13 11:27     ` Ferruh Yigit
  0 siblings, 1 reply; 6+ messages in thread
From: Shahaf Shuler @ 2018-02-13  6:52 UTC (permalink / raw)
  To: Xueming(Steven) Li, Thomas Monjalon, Neil Horman; +Cc: Xueming(Steven) Li, dev

Tuesday, February 6, 2018 9:39 AM, Xueming Li:
> Subject: [PATCH v2] doc: announce ABI change for RSS configuration
> structure
> 
> Update deprecation notice for the new rss_level field of rte_eth_rss_conf.
> 
> Link: http://www.dpdk.org/dev/patchwork/patch/31891
> 
> Signed-off-by: Xueming Li <xuemingl@mellanox.com>
> ---
>  doc/guides/rel_notes/deprecation.rst | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index d59ad5988..4bfce3bd7 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -59,3 +59,7 @@ Deprecation Notices
>    be added between the producer and consumer structures. The size of the
>    structure and the offset of the fields will remain the same on
>    platforms with 64B cache line, but will change on other platforms.
> +
> +* ethdev: A new rss level field planned in 18.05.
> +  The new API add rss_level field to ``rte_eth_rss_conf`` to enable a
> +choice
> +  of RSS hash calculation on outer or inner header of tunneled packet.

Acked-By: Shahaf Shuler <shahafs@mellanox.com>

> --
> 2.13.3

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

* Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure
  2018-02-13  6:52   ` Shahaf Shuler
@ 2018-02-13 11:27     ` Ferruh Yigit
  2018-02-13 12:10       ` Jerin Jacob
  0 siblings, 1 reply; 6+ messages in thread
From: Ferruh Yigit @ 2018-02-13 11:27 UTC (permalink / raw)
  To: Shahaf Shuler, Xueming(Steven) Li, Thomas Monjalon, Neil Horman; +Cc: dev

On 2/13/2018 6:52 AM, Shahaf Shuler wrote:
> Tuesday, February 6, 2018 9:39 AM, Xueming Li:
>> Subject: [PATCH v2] doc: announce ABI change for RSS configuration
>> structure
>>
>> Update deprecation notice for the new rss_level field of rte_eth_rss_conf.
>>
>> Link: http://www.dpdk.org/dev/patchwork/patch/31891
>>
>> Signed-off-by: Xueming Li <xuemingl@mellanox.com>
>> ---
>>  doc/guides/rel_notes/deprecation.rst | 4 ++++
>>  1 file changed, 4 insertions(+)
>>
>> diff --git a/doc/guides/rel_notes/deprecation.rst
>> b/doc/guides/rel_notes/deprecation.rst
>> index d59ad5988..4bfce3bd7 100644
>> --- a/doc/guides/rel_notes/deprecation.rst
>> +++ b/doc/guides/rel_notes/deprecation.rst
>> @@ -59,3 +59,7 @@ Deprecation Notices
>>    be added between the producer and consumer structures. The size of the
>>    structure and the offset of the fields will remain the same on
>>    platforms with 64B cache line, but will change on other platforms.
>> +
>> +* ethdev: A new rss level field planned in 18.05.
>> +  The new API add rss_level field to ``rte_eth_rss_conf`` to enable a
>> +choice
>> +  of RSS hash calculation on outer or inner header of tunneled packet.
> 
> Acked-By: Shahaf Shuler <shahafs@mellanox.com>

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

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

* Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure
  2018-02-13 11:27     ` Ferruh Yigit
@ 2018-02-13 12:10       ` Jerin Jacob
  2018-02-14 16:28         ` Thomas Monjalon
  0 siblings, 1 reply; 6+ messages in thread
From: Jerin Jacob @ 2018-02-13 12:10 UTC (permalink / raw)
  To: Ferruh Yigit
  Cc: Shahaf Shuler, Xueming(Steven) Li, Thomas Monjalon, Neil Horman, dev

-----Original Message-----
> Date: Tue, 13 Feb 2018 11:27:34 +0000
> From: Ferruh Yigit <ferruh.yigit@intel.com>
> To: Shahaf Shuler <shahafs@mellanox.com>, "Xueming(Steven) Li"
>  <xuemingl@mellanox.com>, Thomas Monjalon <thomas@monjalon.net>, Neil
>  Horman <nhorman@tuxdriver.com>
> CC: "dev@dpdk.org" <dev@dpdk.org>
> Subject: Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS
>  configuration structure
> User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101
>  Thunderbird/52.6.0
> 
> On 2/13/2018 6:52 AM, Shahaf Shuler wrote:
> > Tuesday, February 6, 2018 9:39 AM, Xueming Li:
> >> Subject: [PATCH v2] doc: announce ABI change for RSS configuration
> >> structure
> >>
> >> Update deprecation notice for the new rss_level field of rte_eth_rss_conf.
> >>
> >> Link: http://www.dpdk.org/dev/patchwork/patch/31891
> >>
> >> Signed-off-by: Xueming Li <xuemingl@mellanox.com>
> >> ---
> >>  doc/guides/rel_notes/deprecation.rst | 4 ++++
> >>  1 file changed, 4 insertions(+)
> >>
> >> diff --git a/doc/guides/rel_notes/deprecation.rst
> >> b/doc/guides/rel_notes/deprecation.rst
> >> index d59ad5988..4bfce3bd7 100644
> >> --- a/doc/guides/rel_notes/deprecation.rst
> >> +++ b/doc/guides/rel_notes/deprecation.rst
> >> @@ -59,3 +59,7 @@ Deprecation Notices
> >>    be added between the producer and consumer structures. The size of the
> >>    structure and the offset of the fields will remain the same on
> >>    platforms with 64B cache line, but will change on other platforms.
> >> +
> >> +* ethdev: A new rss level field planned in 18.05.
> >> +  The new API add rss_level field to ``rte_eth_rss_conf`` to enable a
> >> +choice
> >> +  of RSS hash calculation on outer or inner header of tunneled packet.
> > 
> > Acked-By: Shahaf Shuler <shahafs@mellanox.com>
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>

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

* Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure
  2018-02-13 12:10       ` Jerin Jacob
@ 2018-02-14 16:28         ` Thomas Monjalon
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2018-02-14 16:28 UTC (permalink / raw)
  To: Xueming(Steven) Li
  Cc: dev, Jerin Jacob, Ferruh Yigit, Shahaf Shuler, Neil Horman

> > >> Update deprecation notice for the new rss_level field of rte_eth_rss_conf.
> > >>
> > >> Link: http://www.dpdk.org/dev/patchwork/patch/31891
> > >>
> > >> Signed-off-by: Xueming Li <xuemingl@mellanox.com>
> > >> ---
> > >> +* ethdev: A new rss level field planned in 18.05.
> > >> +  The new API add rss_level field to ``rte_eth_rss_conf`` to enable a
> > >> +choice
> > >> +  of RSS hash calculation on outer or inner header of tunneled packet.
> > > 
> > > Acked-By: Shahaf Shuler <shahafs@mellanox.com>
> > 
> > Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
> 
> Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>

Applied

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

end of thread, other threads:[~2018-02-14 16:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-04  7:24 [dpdk-dev] [PATCH] doc: annouce ABI change for RSS configuraiton structure Xueming Li
2018-02-06  7:38 ` [dpdk-dev] [PATCH v2] doc: announce ABI change for RSS configuration structure Xueming Li
2018-02-13  6:52   ` Shahaf Shuler
2018-02-13 11:27     ` Ferruh Yigit
2018-02-13 12:10       ` Jerin Jacob
2018-02-14 16:28         ` Thomas Monjalon

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).