1From 52bead95d2957437c691891fcdc49bd6afccdd49 Mon Sep 17 00:00:00 2001 2From: Fabrice Fontaine <fontaine.fabrice@gmail.com> 3Date: Fri, 12 Apr 2024 18:45:13 +0200 4Subject: Create.c: fix uclibc build 5 6Define FALLOC_FL_ZERO_RANGE if needed as FALLOC_FL_ZERO_RANGE is only 7defined for aarch64 on uclibc-ng resulting in the following or1k build 8failure since commit 577fd10486d8d1472a6b559066f344ac30a3a391: 9 10Create.c: In function 'write_zeroes_fork': 11Create.c:155:35: error: 'FALLOC_FL_ZERO_RANGE' undeclared (first use in this function) 12 155 | if (fallocate(fd, FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE, 13 | ^~~~~~~~~~~~~~~~~~~~ 14 15Fixes: 16 - http://autobuild.buildroot.org/results/0e04bcdb591ca5642053e1f7e31384f06581e989 17 18Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> 19Signed-off-by: Mariusz Tkaczyk <mariusz.tkaczyk@linux.intel.com> 20Upstream: https://git.kernel.org/pub/scm/utils/mdadm/mdadm.git/commit/?id=52bead95d2957437c691891fcdc49bd6afccdd49 21--- 22 Create.c | 4 ++++ 23 1 file changed, 4 insertions(+) 24 25diff --git a/Create.c b/Create.c 26index 4397ff49..d94253b1 100644 27--- a/Create.c 28+++ b/Create.c 29@@ -32,6 +32,10 @@ 30 #include <sys/signalfd.h> 31 #include <sys/wait.h> 32 33+#ifndef FALLOC_FL_ZERO_RANGE 34+#define FALLOC_FL_ZERO_RANGE 16 35+#endif 36+ 37 static int round_size_and_verify(unsigned long long *size, int chunk) 38 { 39 if (*size == 0) 40-- 41cgit 1.2.3-korg 42 43