diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-08-10 14:24:45 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-08-24 10:01:29 -0300 |
commit | 4dad97e2a2e510c6b53a0add29a2188714fcf4ab (patch) | |
tree | 14c58feeb702ff013f0197f8eeb00e832d9a979a /sysdeps/unix/sysv/linux | |
parent | 1cc5513114e76083669cba1b11252aad35525e69 (diff) | |
download | glibc-4dad97e2a2e510c6b53a0add29a2188714fcf4ab.tar.gz glibc-4dad97e2a2e510c6b53a0add29a2188714fcf4ab.tar.xz glibc-4dad97e2a2e510c6b53a0add29a2188714fcf4ab.zip |
linux: Mimic kernel defition for BLOCK_SIZE
To avoid possible warnings if the kernel header is included before sys/mount.h. Reviewed-by: Florian Weimer <fweimer@redhat.com> (cherry picked from commit c68b6044bc7945716431f1adc091b17c39b80a06)
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-rw-r--r-- | sysdeps/unix/sysv/linux/sys/mount.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/sys/mount.h b/sysdeps/unix/sysv/linux/sys/mount.h index f965986ba8..df6b0dbb42 100644 --- a/sysdeps/unix/sysv/linux/sys/mount.h +++ b/sysdeps/unix/sysv/linux/sys/mount.h @@ -27,8 +27,8 @@ #include <stddef.h> #include <sys/ioctl.h> -#define BLOCK_SIZE 1024 #define BLOCK_SIZE_BITS 10 +#define BLOCK_SIZE (1<<BLOCK_SIZE_BITS) /* These are the fs-independent mount-flags: up to 16 flags are |