All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] doc: remove old deprecation notice
@ 2018-05-25  9:17 Kirill Rybalchenko
  2018-05-25 10:51 ` [dpdk-stable] " Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Kirill Rybalchenko @ 2018-05-25  9:17 UTC (permalink / raw)
  To: dev
  Cc: kirill.rybalchenko, nhorman, john.mcnamara, marko.kovacevic,
	beilei.xing, qi.z.zhang, stable

New default configuration without flexible payload
is implemented now.

Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
Cc: stable@dpdk.org

Signed-off-by: Kirill Rybalchenko <kirill.rybalchenko@intel.com>
---
 doc/guides/rel_notes/deprecation.rst | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 1e2443c..df54674 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -59,12 +59,6 @@ Deprecation Notices
   Target release for removal of the legacy API will be defined once most
   PMDs have switched to rte_flow.
 
-* i40e: The default flexible payload configuration which extracts the first 16
-  bytes of the payload for RSS will be deprecated starting from 18.02. If
-  required the previous behavior can be configured using existing flow
-  director APIs. There is no ABI/API break. This change will just remove a
-  global configuration setting and require explicit configuration.
-
 * pdump: As we changed to use generic IPC, some changes in APIs and structure
   are expected in subsequent release.
 
-- 
2.5.5

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

* Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
  2018-05-25  9:17 [PATCH] doc: remove old deprecation notice Kirill Rybalchenko
@ 2018-05-25 10:51 ` Thomas Monjalon
  2018-05-25 14:47   ` Rybalchenko, Kirill
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2018-05-25 10:51 UTC (permalink / raw)
  To: Kirill Rybalchenko
  Cc: stable, dev, nhorman, john.mcnamara, marko.kovacevic,
	beilei.xing, qi.z.zhang

25/05/2018 11:17, Kirill Rybalchenko:
> New default configuration without flexible payload
> is implemented now.
> 
> Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")

The Fixes line should not reference the initial announce,
but the commit implementing it, because the deprecation notice should
have been removed while implementing the new API.

> Cc: stable@dpdk.org

You CC:stable because it was implemented in 18.02?

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

* Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
  2018-05-25 10:51 ` [dpdk-stable] " Thomas Monjalon
@ 2018-05-25 14:47   ` Rybalchenko, Kirill
  2018-05-25 14:56     ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Rybalchenko, Kirill @ 2018-05-25 14:47 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: stable, dev, nhorman, Mcnamara, John, Kovacevic, Marko, Xing,
	Beilei, Zhang, Qi Z

Hi Tomas, 

> You CC:stable because it was implemented in 18.02

Sorry, I was misled by check-git-log script warning.

> > Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
> 
> The Fixes line should not reference the initial announce, but the commit
> implementing it, because the deprecation notice should have been removed
> while implementing the new API.

The actual fixline should be:

Fixes: d2f9fe8ae309 ("net/i40e: turn off flexible payload on driver init")

Shall I make v2 of this patch or you can apply it with those little fixes?

Thanks,
Kirill.

> -----Original Message-----
> From: Thomas Monjalon [mailto:thomas@monjalon.net]
> Sent: Friday 25 May 2018 11:51
> To: Rybalchenko, Kirill <kirill.rybalchenko@intel.com>
> Cc: stable@dpdk.org; dev@dpdk.org; nhorman@tuxdriver.com; Mcnamara,
> John <john.mcnamara@intel.com>; Kovacevic, Marko
> <marko.kovacevic@intel.com>; Xing, Beilei <beilei.xing@intel.com>; Zhang,
> Qi Z <qi.z.zhang@intel.com>
> Subject: Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
> 
> 25/05/2018 11:17, Kirill Rybalchenko:
> > New default configuration without flexible payload is implemented now.
> >
> > Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
> 
> The Fixes line should not reference the initial announce, but the commit
> implementing it, because the deprecation notice should have been removed
> while implementing the new API.
> 
> > Cc: stable@dpdk.org
> 
> You CC:stable because it was implemented in 18.02?
> 
> 

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

* Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
  2018-05-25 14:47   ` Rybalchenko, Kirill
@ 2018-05-25 14:56     ` Thomas Monjalon
  2018-05-27 23:31       ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2018-05-25 14:56 UTC (permalink / raw)
  To: Rybalchenko, Kirill
  Cc: stable, dev, nhorman, Mcnamara, John, Kovacevic, Marko, Xing,
	Beilei, Zhang, Qi Z

25/05/2018 16:47, Rybalchenko, Kirill:
> Hi Tomas, 
> 
> > You CC:stable because it was implemented in 18.02
> 
> Sorry, I was misled by check-git-log script warning.
> 
> > > Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
> > 
> > The Fixes line should not reference the initial announce, but the commit
> > implementing it, because the deprecation notice should have been removed
> > while implementing the new API.
> 
> The actual fixline should be:
> 
> Fixes: d2f9fe8ae309 ("net/i40e: turn off flexible payload on driver init")
> 
> Shall I make v2 of this patch or you can apply it with those little fixes?

OK I can fix it.



> > -----Original Message-----
> > From: Thomas Monjalon [mailto:thomas@monjalon.net]
> > Sent: Friday 25 May 2018 11:51
> > To: Rybalchenko, Kirill <kirill.rybalchenko@intel.com>
> > Cc: stable@dpdk.org; dev@dpdk.org; nhorman@tuxdriver.com; Mcnamara,
> > John <john.mcnamara@intel.com>; Kovacevic, Marko
> > <marko.kovacevic@intel.com>; Xing, Beilei <beilei.xing@intel.com>; Zhang,
> > Qi Z <qi.z.zhang@intel.com>
> > Subject: Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
> > 
> > 25/05/2018 11:17, Kirill Rybalchenko:
> > > New default configuration without flexible payload is implemented now.
> > >
> > > Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
> > 
> > The Fixes line should not reference the initial announce, but the commit
> > implementing it, because the deprecation notice should have been removed
> > while implementing the new API.
> > 
> > > Cc: stable@dpdk.org
> > 
> > You CC:stable because it was implemented in 18.02?
> > 
> > 
> 

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

* Re: [dpdk-stable] [PATCH] doc: remove old deprecation notice
  2018-05-25 14:56     ` Thomas Monjalon
@ 2018-05-27 23:31       ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-05-27 23:31 UTC (permalink / raw)
  To: Rybalchenko, Kirill
  Cc: dev, stable, nhorman, Mcnamara, John, Kovacevic, Marko, Xing,
	Beilei, Zhang, Qi Z

25/05/2018 16:56, Thomas Monjalon:
> 25/05/2018 16:47, Rybalchenko, Kirill:
> > Hi Tomas, 
> > 
> > > You CC:stable because it was implemented in 18.02
> > 
> > Sorry, I was misled by check-git-log script warning.
> > 
> > > > Fixes: 09dd01ad9a68 ("doc: announce behaviour change to i40e RSS")
> > > 
> > > The Fixes line should not reference the initial announce, but the commit
> > > implementing it, because the deprecation notice should have been removed
> > > while implementing the new API.
> > 
> > The actual fixline should be:
> > 
> > Fixes: d2f9fe8ae309 ("net/i40e: turn off flexible payload on driver init")
> > 
> > Shall I make v2 of this patch or you can apply it with those little fixes?
> 
> OK I can fix it.

Applied, thanks

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

end of thread, other threads:[~2018-05-27 23:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-25  9:17 [PATCH] doc: remove old deprecation notice Kirill Rybalchenko
2018-05-25 10:51 ` [dpdk-stable] " Thomas Monjalon
2018-05-25 14:47   ` Rybalchenko, Kirill
2018-05-25 14:56     ` Thomas Monjalon
2018-05-27 23:31       ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.