[v2,4/5] linux: Use compile_c_snippet to check linux/mount.h availability

Message ID 20220810172447.1502169-5-adhemerval.zanella@linaro.org
State Committed
Commit e1226cdc6b209539a92d32d5b620ba53fd35abf3
Headers
Series Fix sys/mount.h and kernel header tests |

Checks

Context Check Description
dj/TryBot-apply_patch success Patch applied to master at the time it was sent

Commit Message

Adhemerval Zanella Aug. 10, 2022, 5:24 p.m. UTC
  Checked on x86_64-linux-gnu.
---
 sysdeps/unix/sysv/linux/tst-mount-consts.py | 5 +++++
 1 file changed, 5 insertions(+)
  

Comments

Florian Weimer Aug. 10, 2022, 5:36 p.m. UTC | #1
* Adhemerval Zanella:

> Checked on x86_64-linux-gnu.
> ---
>  sysdeps/unix/sysv/linux/tst-mount-consts.py | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/sysdeps/unix/sysv/linux/tst-mount-consts.py b/sysdeps/unix/sysv/linux/tst-mount-consts.py
> index 4fb356310b..c6307cb5c2 100755
> --- a/sysdeps/unix/sysv/linux/tst-mount-consts.py
> +++ b/sysdeps/unix/sysv/linux/tst-mount-consts.py
> @@ -33,6 +33,11 @@ def main():
>                          help='C compiler (including options) to use')
>      args = parser.parse_args()
>  
> +    if glibcextract.compile_c_snippet(
> +            '#include <linux/mount.h>',
> +            args.cc).returncode != 0:
> +        sys.exit (77)
> +
>      linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
>      # Constants in glibc were updated to match Linux v5.19.  When glibc
>      # constants are updated this value should be updated to match the

Okay after compile_c_snippet is in.

Reviewed-by: Florian Weimer <fweimer@redhat.com>

Thanks,
Florian
  

Patch

diff --git a/sysdeps/unix/sysv/linux/tst-mount-consts.py b/sysdeps/unix/sysv/linux/tst-mount-consts.py
index 4fb356310b..c6307cb5c2 100755
--- a/sysdeps/unix/sysv/linux/tst-mount-consts.py
+++ b/sysdeps/unix/sysv/linux/tst-mount-consts.py
@@ -33,6 +33,11 @@  def main():
                         help='C compiler (including options) to use')
     args = parser.parse_args()
 
+    if glibcextract.compile_c_snippet(
+            '#include <linux/mount.h>',
+            args.cc).returncode != 0:
+        sys.exit (77)
+
     linux_version_headers = glibcsyscalls.linux_kernel_version(args.cc)
     # Constants in glibc were updated to match Linux v5.19.  When glibc
     # constants are updated this value should be updated to match the