forked from pool/glibc
Andreas Schwab
ea78a116b4
- glibcextract-compile-c-snippet.patch: glibcextract.py: Add compile_c_snippet - sys-mount-kernel-definition.patch: linux: Mimic kernel definition for BLOCK_SIZE - sys-mount-usage.patch: linux: Fix sys/mount.h usage with kernel headers OBS-URL: https://build.opensuse.org/request/show/996255 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=624
31 lines
901 B
Diff
31 lines
901 B
Diff
From c68b6044bc7945716431f1adc091b17c39b80a06 Mon Sep 17 00:00:00 2001
|
|
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
|
Date: Wed, 10 Aug 2022 14:24:45 -0300
|
|
Subject: [PATCH] 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>
|
|
---
|
|
sysdeps/unix/sysv/linux/sys/mount.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
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
|
|
--
|
|
2.37.2
|
|
|