DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: update minimum supported kernel
@ 2021-03-03 18:28 Stephen Hemminger
  2021-03-16 10:59 ` Thomas Monjalon
  2021-04-19 22:06 ` [dpdk-dev] [PATCH v2] " Stephen Hemminger
  0 siblings, 2 replies; 7+ messages in thread
From: Stephen Hemminger @ 2021-03-03 18:28 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger, Stephen Hemminger

The DPDK project is only committed to supporting upstream kernel
versions that are still in support.
The 3.16 kernel has reached End Of Life (in June 2020).
The next LTS kernel is 4.19 and is supported until December 2024.

This does not change the existing policy that distribution kernels
that are older are still supported.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 doc/guides/linux_gsg/sys_reqs.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index d7ea8520e558..d08b9126e55f 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -123,7 +123,7 @@ System Software
 
 **Required:**
 
-*   Kernel version >= 3.16
+*   Kernel version >= 4.19
 
     The kernel version required is based on the oldest long term stable kernel available
     at kernel.org when the DPDK version is in development.
-- 
2.30.1


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

* Re: [dpdk-dev] [PATCH] doc: update minimum supported kernel
  2021-03-03 18:28 [dpdk-dev] [PATCH] doc: update minimum supported kernel Stephen Hemminger
@ 2021-03-16 10:59 ` Thomas Monjalon
  2021-03-16 11:52   ` Ferruh Yigit
  2021-04-19 22:06 ` [dpdk-dev] [PATCH v2] " Stephen Hemminger
  1 sibling, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2021-03-16 10:59 UTC (permalink / raw)
  To: Stephen Hemminger
  Cc: dev, Stephen Hemminger, bruce.richardson, david.marchand

03/03/2021 19:28, Stephen Hemminger:
> The DPDK project is only committed to supporting upstream kernel
> versions that are still in support.
> The 3.16 kernel has reached End Of Life (in June 2020).
> The next LTS kernel is 4.19 and is supported until December 2024.
> 
> This does not change the existing policy that distribution kernels
> that are older are still supported.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> ---
>  **Required:**
>  
> -*   Kernel version >= 3.16
> +*   Kernel version >= 4.19

Acked-by: Thomas Monjalon <thomas@monjalon.net>



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

* Re: [dpdk-dev] [PATCH] doc: update minimum supported kernel
  2021-03-16 10:59 ` Thomas Monjalon
@ 2021-03-16 11:52   ` Ferruh Yigit
  2021-03-16 12:54     ` Thomas Monjalon
  2021-03-16 15:50     ` Stephen Hemminger
  0 siblings, 2 replies; 7+ messages in thread
From: Ferruh Yigit @ 2021-03-16 11:52 UTC (permalink / raw)
  To: Thomas Monjalon, Stephen Hemminger
  Cc: dev, Stephen Hemminger, bruce.richardson, david.marchand

On 3/16/2021 10:59 AM, Thomas Monjalon wrote:
> 03/03/2021 19:28, Stephen Hemminger:
>> The DPDK project is only committed to supporting upstream kernel
>> versions that are still in support.
>> The 3.16 kernel has reached End Of Life (in June 2020).
>> The next LTS kernel is 4.19 and is supported until December 2024.
>>
>> This does not change the existing policy that distribution kernels
>> that are older are still supported.
>>
>> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
>> ---
>>   **Required:**
>>   
>> -*   Kernel version >= 3.16
>> +*   Kernel version >= 4.19
> 
> Acked-by: Thomas Monjalon <thomas@monjalon.net>
> 
> 

No objection, but I see 4.4 is the oldest LTS, and there are a few in the middle 
till 4.19 [1]. Is 4.19 selected specially?

And what about adding a note to say oldest LTS kernel version is supported?

[1] https://www.kernel.org/category/releases.html

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

* Re: [dpdk-dev] [PATCH] doc: update minimum supported kernel
  2021-03-16 11:52   ` Ferruh Yigit
@ 2021-03-16 12:54     ` Thomas Monjalon
  2021-03-16 15:50     ` Stephen Hemminger
  1 sibling, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2021-03-16 12:54 UTC (permalink / raw)
  To: Stephen Hemminger, Ferruh Yigit
  Cc: dev, Stephen Hemminger, bruce.richardson, david.marchand

16/03/2021 12:52, Ferruh Yigit:
> On 3/16/2021 10:59 AM, Thomas Monjalon wrote:
> > 03/03/2021 19:28, Stephen Hemminger:
> >> The DPDK project is only committed to supporting upstream kernel
> >> versions that are still in support.
> >> The 3.16 kernel has reached End Of Life (in June 2020).
> >> The next LTS kernel is 4.19 and is supported until December 2024.
> >>
> >> This does not change the existing policy that distribution kernels
> >> that are older are still supported.
> >>
> >> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> >> ---
> >>   **Required:**
> >>   
> >> -*   Kernel version >= 3.16
> >> +*   Kernel version >= 4.19
> > 
> > Acked-by: Thomas Monjalon <thomas@monjalon.net>
> 
> No objection, but I see 4.4 is the oldest LTS, and there are a few in the middle 
> till 4.19 [1]. Is 4.19 selected specially?
> 
> And what about adding a note to say oldest LTS kernel version is supported?
> 
> [1] https://www.kernel.org/category/releases.html

Thanks Ferruh, I did not check before giving my ack.
So I agree it should be 4.4.



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

* Re: [dpdk-dev] [PATCH] doc: update minimum supported kernel
  2021-03-16 11:52   ` Ferruh Yigit
  2021-03-16 12:54     ` Thomas Monjalon
@ 2021-03-16 15:50     ` Stephen Hemminger
  1 sibling, 0 replies; 7+ messages in thread
From: Stephen Hemminger @ 2021-03-16 15:50 UTC (permalink / raw)
  To: Ferruh Yigit
  Cc: Thomas Monjalon, dev, Stephen Hemminger, bruce.richardson,
	david.marchand

On Tue, 16 Mar 2021 11:52:52 +0000
Ferruh Yigit <ferruh.yigit@intel.com> wrote:

> On 3/16/2021 10:59 AM, Thomas Monjalon wrote:
> > 03/03/2021 19:28, Stephen Hemminger:  
> >> The DPDK project is only committed to supporting upstream kernel
> >> versions that are still in support.
> >> The 3.16 kernel has reached End Of Life (in June 2020).
> >> The next LTS kernel is 4.19 and is supported until December 2024.
> >>
> >> This does not change the existing policy that distribution kernels
> >> that are older are still supported.
> >>
> >> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
> >> ---
> >>   **Required:**
> >>   
> >> -*   Kernel version >= 3.16
> >> +*   Kernel version >= 4.19  
> > 
> > Acked-by: Thomas Monjalon <thomas@monjalon.net>
> > 
> >   
> 
> No objection, but I see 4.4 is the oldest LTS, and there are a few in the middle 
> till 4.19 [1]. Is 4.19 selected specially?

Agree should be 4.4, I miss read one of the huge spreadsheets of releases.
Wikipedia and kernel.org both say 4.4 is supported until Feb 2022.

So we need to support 4.4 through 22.02 release

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

* [dpdk-dev] [PATCH v2] doc: update minimum supported kernel
  2021-03-03 18:28 [dpdk-dev] [PATCH] doc: update minimum supported kernel Stephen Hemminger
  2021-03-16 10:59 ` Thomas Monjalon
@ 2021-04-19 22:06 ` Stephen Hemminger
  2021-05-19 16:37   ` Thomas Monjalon
  1 sibling, 1 reply; 7+ messages in thread
From: Stephen Hemminger @ 2021-04-19 22:06 UTC (permalink / raw)
  To: dev; +Cc: Stephen Hemminger

The DPDK project is only committed to supporting upstream kernel
versions that are still in support. The 3.16 kernel has reached
End Of Life (in June 2020). The next LTS kernel is 4.4 and is
supported until February 2020.

This does not change the existing policy that distribution kernels
that are older are still supported.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
v2 - current LTS is 4.4

 doc/guides/linux_gsg/sys_reqs.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index dfe8f4ef3bfb..44eeb4bea985 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -123,7 +123,7 @@ System Software
 
 **Required:**
 
-*   Kernel version >= 3.16
+*   Kernel version >= 4.4
 
     The kernel version required is based on the oldest long term stable kernel available
     at kernel.org when the DPDK version is in development.
-- 
2.30.2


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

* Re: [dpdk-dev] [PATCH v2] doc: update minimum supported kernel
  2021-04-19 22:06 ` [dpdk-dev] [PATCH v2] " Stephen Hemminger
@ 2021-05-19 16:37   ` Thomas Monjalon
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Monjalon @ 2021-05-19 16:37 UTC (permalink / raw)
  To: Stephen Hemminger; +Cc: dev

20/04/2021 00:06, Stephen Hemminger:
> The DPDK project is only committed to supporting upstream kernel
> versions that are still in support. The 3.16 kernel has reached
> End Of Life (in June 2020). The next LTS kernel is 4.4 and is
> supported until February 2020.
> 
> This does not change the existing policy that distribution kernels
> that are older are still supported.
> 
> Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>

Acked-by: Thomas Monjalon <thomas@monjalon.net>

Applied, thanks



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

end of thread, other threads:[~2021-05-19 16:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-03 18:28 [dpdk-dev] [PATCH] doc: update minimum supported kernel Stephen Hemminger
2021-03-16 10:59 ` Thomas Monjalon
2021-03-16 11:52   ` Ferruh Yigit
2021-03-16 12:54     ` Thomas Monjalon
2021-03-16 15:50     ` Stephen Hemminger
2021-04-19 22:06 ` [dpdk-dev] [PATCH v2] " Stephen Hemminger
2021-05-19 16:37   ` 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).