]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Require Linux 3.2 except on x86 / x86_64, 3.2 headers everywhere.
authorJoseph Myers <joseph@codesourcery.com>
Wed, 24 Feb 2016 17:15:12 +0000 (17:15 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Wed, 24 Feb 2016 17:15:12 +0000 (17:15 +0000)
In <https://sourceware.org/ml/libc-alpha/2016-01/msg00885.html> I
proposed a minimum Linux kernel version of 3.2 for glibc 2.24, since
Linux 2.6.32 has reached EOL.

In the discussion in February, some concerns were expressed about
compatibility with OpenVZ containers.  It's not clear that these are
real issues, given OpenVZ backporting kernel features and faking the
kernel version for guest software, as discussed in
<https://sourceware.org/ml/libc-alpha/2016-02/msg00278.html>.  It's
also not clear that supporting running GNU/Linux distributions from
late 2016 (at the earliest) on a kernel series from 2009 is a sensible
expectation.  However, as an interim step, this patch increases the
requirement everywhere except x86 / x86_64 (since the controversy was
only about those architectures); the special caveats and settings can
easily be removed later when we're ready to increase the requirements
on x86 / x86_64 (and if someone would like to raise the issue on LWN
as suggested in the previous discussion, that would be welcome).  3.2
kernel headers are required everywhere by this patch.

(x32 already requires 3.4 or later, so is unaffected by this patch.)

As usual for such a change, this patch only changes the configure
scripts and associated documentation.  The intent is to follow up with
removal of dead __LINUX_KERNEL_VERSION conditionals.  Each __ASSUME_*
or other macro that becomes dead can then be removed independently.

Tested for x86_64 and x86.

* sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
Define to 3.2.0.
(arch_minimum_kernel): Likewise.
* sysdeps/unix/sysv/linux/configure: Regenerated.
* sysdeps/unix/sysv/linux/i386/configure.ac (arch_minimum_kernel):
Define to 2.6.32.
* sysdeps/unix/sysv/linux/i386/configure: Regenerated.
* sysdeps/unix/sysv/linux/x86_64/64/configure.ac
(arch_minimum_kernel): Define to 2.6.32.
* sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerated.
* README: Document Linux 3.2 requirement.
* manual/install.texi (Linux): Document Linux 3.2 headers
requirement.
* INSTALL: Regenerated.

ChangeLog
INSTALL
NEWS
README
manual/install.texi
sysdeps/unix/sysv/linux/configure
sysdeps/unix/sysv/linux/configure.ac
sysdeps/unix/sysv/linux/i386/configure
sysdeps/unix/sysv/linux/i386/configure.ac
sysdeps/unix/sysv/linux/x86_64/64/configure
sysdeps/unix/sysv/linux/x86_64/64/configure.ac

index 4d4840da75990b50fccb609fcddedcf7423b1685..578f1b65d2f6b1ec29691eb785fa881770f0f10e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,20 @@
+2016-02-24  Joseph Myers  <joseph@codesourcery.com>
+
+       * sysdeps/unix/sysv/linux/configure.ac (LIBC_LINUX_VERSION):
+       Define to 3.2.0.
+       (arch_minimum_kernel): Likewise.
+       * sysdeps/unix/sysv/linux/configure: Regenerated.
+       * sysdeps/unix/sysv/linux/i386/configure.ac (arch_minimum_kernel):
+       Define to 2.6.32.
+       * sysdeps/unix/sysv/linux/i386/configure: Regenerated.
+       * sysdeps/unix/sysv/linux/x86_64/64/configure.ac
+       (arch_minimum_kernel): Define to 2.6.32.
+       * sysdeps/unix/sysv/linux/x86_64/64/configure: Regenerated.
+       * README: Document Linux 3.2 requirement.
+       * manual/install.texi (Linux): Document Linux 3.2 headers
+       requirement.
+       * INSTALL: Regenerated.
+
 2016-02-24  Andreas Schwab  <schwab@suse.de>
 
        * math/test-math-isinff.cc (do_test): Only call isinfl and isnanl
diff --git a/INSTALL b/INSTALL
index a0d0c058cd3b2fffb9a9b7b4f98489f903d618a0..31e256d41391237514a68dadd3681ca5fc101bbe 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -426,7 +426,7 @@ Specific advice for GNU/Linux systems
 =====================================
 
 If you are installing the GNU C Library on GNU/Linux systems, you need
-to have the header files from a 2.6.32 or newer kernel around for
+to have the header files from a 3.2 or newer kernel around for
 reference.  These headers must be installed using 'make
 headers_install'; the headers present in the kernel source directory are
 not suitable for direct use by the GNU C Library.  You do not need to
diff --git a/NEWS b/NEWS
index dc5a382c9e6881c1093e2be04c3ac9a62548fb7e..f963b938c8b812d605c4db570ef0e2f1ad7c6bdb 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,13 @@ using `glibc' in the "product" field.
 \f
 Version 2.24
 
+* The minimum Linux kernel version that this version of the GNU C Library
+  can be used with is 3.2, except on i[4567]86 and x86_64, where Linux
+  kernel version 2.6.32 or later suffices (on architectures that already
+  required kernel versions more recent than 3.2, those requirements remain
+  unchanged).  Linux 3.2 or later kernel headers are required on all
+  architectures.
+
 * The pap_AN locale has been deleted.  This has been deprecated for a long
   time.  It has been replaced by pap_AW & pap_CW, both of which have long
   been included in previous releases.
diff --git a/README b/README
index e5d584ab2378275c7ea87baa84b64c3ebf19b2c3..be687c7dc3c70a247393bbadba984cd25d9b905b 100644 (file)
--- a/README
+++ b/README
@@ -17,7 +17,9 @@ GNU/Hurd support requires out-of-tree patches that will eventually be
 incorporated into an official GNU C Library release.
 
 When working with Linux kernels, this version of the GNU C Library
-requires Linux kernel version 2.6.32 or later.
+requires Linux kernel version 3.2 or later on all architectures except
+i[4567]86 and x86_64, where Linux kernel version 2.6.32 or later
+suffices.
 
 Also note that the shared version of the libgcc_s library must be
 installed for the pthread library to work correctly.
index b329950ff0f08514a1b2c635851afe2ff029f15a..95021b4a50350782d82563e4bfec4d447000d4c9 100644 (file)
@@ -489,7 +489,7 @@ patches, although we try to avoid this.
 @cindex kernel header files
 
 If you are installing @theglibc{} on @gnulinuxsystems{}, you need to have
-the header files from a 2.6.32 or newer kernel around for reference.
+the header files from a 3.2 or newer kernel around for reference.
 These headers must be installed using @samp{make headers_install}; the
 headers present in the kernel source directory are not suitable for
 direct use by @theglibc{}.  You do not need to use that kernel, just have
index ef9d4256d3e57e638de427590ac06f5808423946..ab96601f0cddcf06d4ea8d8ece1a8209a6fbd27c 100644 (file)
@@ -39,13 +39,13 @@ fi
 
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking installed Linux kernel header files" >&5
 $as_echo_n "checking installed Linux kernel header files... " >&6; }
-if ${libc_cv_linux2632+:} false; then :
+if ${libc_cv_linux320+:} false; then :
   $as_echo_n "(cached) " >&6
 else
   cat confdefs.h - <<_ACEOF >conftest.$ac_ext
 /* end confdefs.h.  */
 #include <linux/version.h>
-#if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE <  (2 *65536+ 6 *256+ 32) /* 2.6.32 */
+#if !defined LINUX_VERSION_CODE || LINUX_VERSION_CODE <  (3 *65536+ 2 *256+ 0) /* 3.2.0 */
 # error kernel headers missing or too old
 #endif
 int
@@ -57,20 +57,20 @@ main ()
 }
 _ACEOF
 if ac_fn_c_try_compile "$LINENO"; then :
-  libc_cv_linux2632='2.6.32 or later'
+  libc_cv_linux320='3.2.0 or later'
 else
-  libc_cv_linux2632='missing or too old!'
+  libc_cv_linux320='missing or too old!'
 fi
 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
 fi
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_linux2632" >&5
-$as_echo "$libc_cv_linux2632" >&6; }
-if test "$libc_cv_linux2632" != '2.6.32 or later'; then
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_linux320" >&5
+$as_echo "$libc_cv_linux320" >&6; }
+if test "$libc_cv_linux320" != '3.2.0 or later'; then
   as_fn_error $? "GNU libc requires kernel header files from
-Linux 2.6.32 or later to be installed before configuring.
+Linux 3.2.0 or later to be installed before configuring.
 The kernel header files are found usually in /usr/include/asm and
 /usr/include/linux; make sure these directories use files from
-Linux 2.6.32 or later.  This check uses <linux/version.h>, so
+Linux 3.2.0 or later.  This check uses <linux/version.h>, so
 make sure that file was built correctly when installing the kernel header
 files.  To use kernel headers not from /usr/include/linux, use the
 configure option --with-headers." "$LINENO" 5
@@ -82,7 +82,7 @@ fi
 # set arch_minimum_kernel already, let that override our defaults here.
 # Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde
 # if appropriate too.
-test -n "$arch_minimum_kernel" || arch_minimum_kernel=2.6.32
+test -n "$arch_minimum_kernel" || arch_minimum_kernel=3.2.0
 if test -n "$minimum_kernel"; then
 
   user_version=$((`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`))
index 6738e2d653f0f042884a0d73ebf950e9554b7750..b3e74bd2e2b72fb729fa37726738799c784251b3 100644 (file)
@@ -1,7 +1,7 @@
 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
 # Local configure fragment for sysdeps/unix/sysv/linux.
 
-define([LIBC_LINUX_VERSION],[2.6.32])dnl
+define([LIBC_LINUX_VERSION],[3.2.0])dnl
 if test -n "$sysheaders"; then
   OLD_CPPFLAGS=$CPPFLAGS
   CPPFLAGS="$CPPFLAGS $SYSINCLUDES"
@@ -33,7 +33,7 @@ fi
 # set arch_minimum_kernel already, let that override our defaults here.
 # Note that we presume such a fragment has set libc_cv_gcc_unwind_find_fde
 # if appropriate too.
-test -n "$arch_minimum_kernel" || arch_minimum_kernel=2.6.32
+test -n "$arch_minimum_kernel" || arch_minimum_kernel=3.2.0
 if test -n "$minimum_kernel"; then
   changequote(,)
   user_version=$((`echo "$minimum_kernel.0.0.0" | sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\1 \* 65536 + \2 \* 256 + \3/'`))
index f119e62fc31903b36c14d44575e1edf1918c84b6..eb72659dc3f696f25bbf45ad255bf80ced3771f2 100644 (file)
@@ -1,5 +1,7 @@
 # This file is generated from configure.ac by Autoconf.  DO NOT EDIT!
  # Local configure fragment for sysdeps/unix/sysv/linux/i386.
 
+arch_minimum_kernel=2.6.32
+
 libc_cv_gcc_unwind_find_fde=yes
 ldd_rewrite_script=sysdeps/unix/sysv/linux/ldd-rewrite.sed
index 64ab2cc2c8f9deec2f92501d92ba44875db504d5..1a11da6dad36ef2ad23e3f439bcc64929cf70987 100644 (file)
@@ -1,5 +1,7 @@
 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
 # Local configure fragment for sysdeps/unix/sysv/linux/i386.
 
+arch_minimum_kernel=2.6.32
+
 libc_cv_gcc_unwind_find_fde=yes
 ldd_rewrite_script=sysdeps/unix/sysv/linux/ldd-rewrite.sed
index 9d1a8d271d7e7fbc56d916be25f3c7a52429ea67..4d3f84567bd9196788d7875e49344c19dd8be293 100644 (file)
@@ -1,6 +1,8 @@
 # This file is generated from configure.ac by Autoconf.  DO NOT EDIT!
  # Local configure fragment for sysdeps/unix/sysv/linux/x86_64/64.
 
+arch_minimum_kernel=2.6.32
+
 test -n "$libc_cv_slibdir" ||
 case "$prefix" in
 /usr | /usr/)
index 8e863b94ad1c47f94a466b0d465eb1bb82543e20..81114e8b27fc70acf8e6e3adc1ccf62dce8b71d2 100644 (file)
@@ -1,4 +1,6 @@
 GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
 # Local configure fragment for sysdeps/unix/sysv/linux/x86_64/64.
 
+arch_minimum_kernel=2.6.32
+
 LIBC_SLIBDIR_RTLDDIR([lib64], [lib64])