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-12 09:15:21 -0300 |
commit | c68b6044bc7945716431f1adc091b17c39b80a06 (patch) | |
tree | 402d43aea56fed5a8aaedc4673a61de6cc722efd /sysdeps/unix/sysv/linux | |
parent | 1542019b69b7ec7b2cd34357af035e406d153631 (diff) | |
download | glibc-c68b6044bc7945716431f1adc091b17c39b80a06.tar glibc-c68b6044bc7945716431f1adc091b17c39b80a06.tar.gz glibc-c68b6044bc7945716431f1adc091b17c39b80a06.tar.bz2 glibc-c68b6044bc7945716431f1adc091b17c39b80a06.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>
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 |