DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: note min required kernel version increase for 19.02
@ 2018-10-10  9:40 Kevin Traynor
  2018-10-10 10:07 ` [dpdk-dev] [dpdk-techboard] " Maxime Coquelin
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Kevin Traynor @ 2018-10-10  9:40 UTC (permalink / raw)
  To: dev, techboard, john.mcnamara; +Cc: Kevin Traynor

Updating docs to reflect decision made at the techboard
that the min kernel version should be bumped from 3.2 to
the latest longterm stable release (3.16), but that
compatiblity for commonly used distribution kernels should
be kept also.

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
---

I namechecked RHEL/CentOS 7 because they have a 3.10 based kernel and
were discussed. I can add others if requested, but not needed if their
base version is >= 3.16.

Not discussed at techboard, but I added that the change will happen for
19.02, so that any impacted users have some time and an LTS before the
change. Can change that if required.

 doc/guides/linux_gsg/sys_reqs.rst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index e2230f3..ef97db9 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -104,4 +104,10 @@ System Software
         uname -r
 
+.. note::
+
+    Kernel version 3.2 is no longer a kernel.org longterm stable kernel. For DPDK 19.02 the minimum
+    required kernel will be updated to the current kernel.org oldest longterm stable supported kernel
+    3.16 or recent versions of common distributions, notably RHEL/CentOS 7.
+
 *   glibc >= 2.7 (for features related to cpuset)
 
-- 
2.9.5

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

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] doc: note min required kernel version increase for 19.02
  2018-10-10  9:40 [dpdk-dev] [PATCH] doc: note min required kernel version increase for 19.02 Kevin Traynor
@ 2018-10-10 10:07 ` Maxime Coquelin
  2018-10-10 12:11 ` Thomas Monjalon
  2018-10-10 14:14 ` [dpdk-dev] [PATCH v2] " Kevin Traynor
  2 siblings, 0 replies; 5+ messages in thread
From: Maxime Coquelin @ 2018-10-10 10:07 UTC (permalink / raw)
  To: Kevin Traynor, dev, techboard, john.mcnamara



On 10/10/2018 11:40 AM, Kevin Traynor wrote:
> Updating docs to reflect decision made at the techboard
> that the min kernel version should be bumped from 3.2 to
> the latest longterm stable release (3.16), but that
> compatiblity for commonly used distribution kernels should
> be kept also.
> 
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
> ---
> 
> I namechecked RHEL/CentOS 7 because they have a 3.10 based kernel and
> were discussed. I can add others if requested, but not needed if their
> base version is >= 3.16.
> 
> Not discussed at techboard, but I added that the change will happen for
> 19.02, so that any impacted users have some time and an LTS before the
> change. Can change that if required.
> 
>   doc/guides/linux_gsg/sys_reqs.rst | 6 ++++++
>   1 file changed, 6 insertions(+)
> 
> diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
> index e2230f3..ef97db9 100644
> --- a/doc/guides/linux_gsg/sys_reqs.rst
> +++ b/doc/guides/linux_gsg/sys_reqs.rst
> @@ -104,4 +104,10 @@ System Software
>           uname -r
>   
> +.. note::
> +
> +    Kernel version 3.2 is no longer a kernel.org longterm stable kernel. For DPDK 19.02 the minimum
> +    required kernel will be updated to the current kernel.org oldest longterm stable supported kernel
> +    3.16 or recent versions of common distributions, notably RHEL/CentOS 7.
> +
>   *   glibc >= 2.7 (for features related to cpuset)
>   
> 

Acked-by: Maxime Coquelin <maxime.coquelin@redhat.com>

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

* Re: [dpdk-dev] [dpdk-techboard] [PATCH] doc: note min required kernel version increase for 19.02
  2018-10-10  9:40 [dpdk-dev] [PATCH] doc: note min required kernel version increase for 19.02 Kevin Traynor
  2018-10-10 10:07 ` [dpdk-dev] [dpdk-techboard] " Maxime Coquelin
@ 2018-10-10 12:11 ` Thomas Monjalon
  2018-10-10 14:14 ` [dpdk-dev] [PATCH v2] " Kevin Traynor
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-10-10 12:11 UTC (permalink / raw)
  To: Kevin Traynor; +Cc: techboard, dev, john.mcnamara

10/10/2018 11:40, Kevin Traynor:
> Updating docs to reflect decision made at the techboard
> that the min kernel version should be bumped from 3.2 to
> the latest longterm stable release (3.16), but that
> compatiblity for commonly used distribution kernels should
> be kept also.
> 
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
> ---
> +.. note::
> +
> +    Kernel version 3.2 is no longer a kernel.org longterm stable kernel.For DPDK 19.02 the minimum
> +    required kernel will be updated to the current kernel.org oldest longterm stable supported kernel
> +    3.16 or recent versions of common distributions, notably RHEL/CentOS 7.

On a style note, better to break lines after end of sentence,
or logically:

Kernel version 3.2 is no longer a kernel.org longterm stable kernel.
For DPDK 19.02 the minimum required kernel will be updated to
the current kernel.org oldest longterm stable supported kernel 3.16,
or recent versions of common distributions, notably RHEL/CentOS 7.

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

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

* [dpdk-dev] [PATCH v2] doc: note min required kernel version increase for 19.02
  2018-10-10  9:40 [dpdk-dev] [PATCH] doc: note min required kernel version increase for 19.02 Kevin Traynor
  2018-10-10 10:07 ` [dpdk-dev] [dpdk-techboard] " Maxime Coquelin
  2018-10-10 12:11 ` Thomas Monjalon
@ 2018-10-10 14:14 ` Kevin Traynor
  2018-11-18 23:57   ` Thomas Monjalon
  2 siblings, 1 reply; 5+ messages in thread
From: Kevin Traynor @ 2018-10-10 14:14 UTC (permalink / raw)
  To: dev, techboard, john.mcnamara
  Cc: bluca, mvarlese, christian.ehrhardt, Kevin Traynor

Updating docs to reflect decision made at the techboard
that the min kernel version should be bumped from 3.2 to
the latest longterm stable release (3.16), but that
compatiblity for commonly used distribution kernels should
be kept also.

Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
Acked-by: Maxime Coquelin <maxime.coquelin@redhat.com>
Acked-by: Thomas Monjalon <thomas@monjalon.net>
---
v2: break long lines

I namechecked RHEL/CentOS 7 because they have a 3.10 based kernel and
were discussed. I can add others if requested, but not needed if their
base version is >= 3.16.

Not discussed at techboard, but I added that the change will happen for
19.02, so that any impacted users have some time and an LTS before the
change. Can change that if required.

 doc/guides/linux_gsg/sys_reqs.rst | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/doc/guides/linux_gsg/sys_reqs.rst b/doc/guides/linux_gsg/sys_reqs.rst
index e2230f3..11d65b1 100644
--- a/doc/guides/linux_gsg/sys_reqs.rst
+++ b/doc/guides/linux_gsg/sys_reqs.rst
@@ -104,4 +104,11 @@ System Software
         uname -r
 
+.. note::
+
+    Kernel version 3.2 is no longer a kernel.org longterm stable kernel.
+    For DPDK 19.02 the minimum required kernel will be updated to
+    the current kernel.org oldest longterm stable supported kernel 3.16,
+    or recent versions of common distributions, notably RHEL/CentOS 7.
+
 *   glibc >= 2.7 (for features related to cpuset)
 
-- 
2.9.5

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

* Re: [dpdk-dev] [PATCH v2] doc: note min required kernel version increase for 19.02
  2018-10-10 14:14 ` [dpdk-dev] [PATCH v2] " Kevin Traynor
@ 2018-11-18 23:57   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2018-11-18 23:57 UTC (permalink / raw)
  To: Kevin Traynor
  Cc: dev, techboard, john.mcnamara, bluca, mvarlese, christian.ehrhardt

10/10/2018 16:14, Kevin Traynor:
> Updating docs to reflect decision made at the techboard
> that the min kernel version should be bumped from 3.2 to
> the latest longterm stable release (3.16), but that
> compatiblity for commonly used distribution kernels should
> be kept also.
> 
> Signed-off-by: Kevin Traynor <ktraynor@redhat.com>
> Acked-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> Acked-by: Thomas Monjalon <thomas@monjalon.net>

Applied, thanks

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

end of thread, other threads:[~2018-11-18 23:57 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-10  9:40 [dpdk-dev] [PATCH] doc: note min required kernel version increase for 19.02 Kevin Traynor
2018-10-10 10:07 ` [dpdk-dev] [dpdk-techboard] " Maxime Coquelin
2018-10-10 12:11 ` Thomas Monjalon
2018-10-10 14:14 ` [dpdk-dev] [PATCH v2] " Kevin Traynor
2018-11-18 23:57   ` 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).