public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] linux: Make tst-mount-consts unsupported for kernels headers older than 5.0
@ 2022-08-09 17:22 Adhemerval Zanella
  2022-08-10  9:18 ` Florian Weimer
  0 siblings, 1 reply; 4+ messages in thread
From: Adhemerval Zanella @ 2022-08-09 17:22 UTC (permalink / raw)
  To: libc-alpha, Florian Weimer

The linux/mount.h is only provided by Linux 5.0.

Checked on x86_64-linux-gnu.
---
 sysdeps/unix/sysv/linux/tst-mount-consts.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sysdeps/unix/sysv/linux/tst-mount-consts.py b/sysdeps/unix/sysv/linux/tst-mount-consts.py
index 4fb356310b..0f5b982430 100755
--- a/sysdeps/unix/sysv/linux/tst-mount-consts.py
+++ b/sysdeps/unix/sysv/linux/tst-mount-consts.py
@@ -34,6 +34,9 @@ def main():
     args = parser.parse_args()
 
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
+    # Linux started to provide mount.h with 5.0.
+    if linux_version_headers < (5, 0):
+        sys.exit (77)
     # Constants in glibc were updated to match Linux v5.19.  When glibc
     # constants are updated this value should be updated to match the
     # released kernel version from which the constants were taken.
-- 
2.34.1


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

end of thread, other threads:[~2022-08-10 15:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-09 17:22 [PATCH] linux: Make tst-mount-consts unsupported for kernels headers older than 5.0 Adhemerval Zanella
2022-08-10  9:18 ` Florian Weimer
2022-08-10 14:52   ` Adhemerval Zanella Netto
2022-08-10 15:01     ` Florian Weimer

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 read-only IMAP folder(s) and NNTP newsgroup(s).