]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update kernel version to 7.1 in header constant tests
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 3 Jul 2026 14:46:38 +0000 (11:46 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 3 Jul 2026 19:31:58 +0000 (16:31 -0300)
There are no new constants covered by tst-mman-consts.py or
tst-openat2-consts.py in Linux 6.18, 6.19, 7.0, or 7.1.

Reviewed-by: Florian Weimer <fweimer@redhat.com>
sysdeps/unix/sysv/linux/tst-mman-consts.py
sysdeps/unix/sysv/linux/tst-openat2-consts.py

index 8a3e64d7f3e91b1ed0980cc0a2cad600a040eba7..aad9bdaa03e92c9890c7201c1bcfef4f569070d6 100644 (file)
@@ -33,7 +33,7 @@ def main():
                         help='C compiler (including options) to use')
     args = parser.parse_args()
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
-    linux_version_glibc = (6, 17)
+    linux_version_glibc = (7, 1)
     sys.exit(glibcextract.compare_macro_consts(
         '#define _GNU_SOURCE 1\n'
         '#include <sys/mman.h>\n',
index 078e6599db0b439afca180c9d36e36dfba6d0e54..0b917d172553d47e32f7f05a62cd83bc5b6b91ec 100755 (executable)
@@ -39,10 +39,10 @@ def main():
         sys.exit (77)
 
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
-    # Constants in glibc were updated to match Linux v6.17.  When glibc
+    # Constants in glibc were updated to match Linux v7.1.  When glibc
     # constants are updated this value should be updated to match the
     # released kernel version from which the constants were taken.
-    linux_version_glibc = (6, 17)
+    linux_version_glibc = (7, 1)
     def check(cte, exclude=None):
         return glibcextract.compare_macro_consts(
                 '#define _FCNTL_H\n'