fio: fix musl builds

fio 3.40 added the commit 4175f4dbec5d ("oslib: blkzoned: add
blkzoned_move_zone_wp() helper function") which uses
FALLOC_FL_ZERO_RANGE which in a musl build is undefined without
including its header.

Backport the upstream fix.

Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Max Krummenacher 2026-03-06 23:57:37 +01:00 committed by Khem Raj
parent 46ae413c63
commit 4c98e54b65
No known key found for this signature in database
GPG Key ID: BB053355919D3314
2 changed files with 42 additions and 1 deletions

View File

@ -0,0 +1,38 @@
From ccce76d2850d6e52da3d7986c950af068fbfe0fd Mon Sep 17 00:00:00 2001
From: Arthur Gautier <arthur.gautier@arista.com>
Date: Sat, 13 Dec 2025 20:07:11 -0800
Subject: [PATCH] fix musl builds
This commit fixes the build on musl which fails with the following
error:
```
oslib/linux-blkzoned.c: In function 'blkzoned_move_zone_wp':
oslib/linux-blkzoned.c:389:37: error: 'FALLOC_FL_ZERO_RANGE' undeclared (first use in this function)
389 | ret = fallocate(fd, FALLOC_FL_ZERO_RANGE, z->wp, length);
| ^~~~~~~~~~~~~~~~~~~~
oslib/linux-blkzoned.c:389:37: note: each undeclared identifier is reported only once for each function it appears in
make: *** [Makefile:501: oslib/linux-blkzoned.o] Error 1
make: *** Waiting for unfinished jobs....
```
Upstream-Status: Backport [https://github.com/axboe/fio/commit/ccce76d2850d6e52da3d7986c950af068fbfe0fd]
Signed-off-by: Arthur Gautier <arthur.gautier@arista.com>
---
oslib/linux-blkzoned.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/oslib/linux-blkzoned.c b/oslib/linux-blkzoned.c
index 78e25fca..c45ef623 100644
--- a/oslib/linux-blkzoned.c
+++ b/oslib/linux-blkzoned.c
@@ -25,6 +25,7 @@
#ifndef BLKFINISHZONE
#define BLKFINISHZONE _IOW(0x12, 136, struct blk_zone_range)
#endif
+#include <linux/falloc.h>
/*
* If the uapi headers installed on the system lacks zone capacity support,
--
2.51.0

View File

@ -22,7 +22,10 @@ PACKAGECONFIG_NUMA:armeb = ""
PACKAGECONFIG ??= "${PACKAGECONFIG_NUMA}"
PACKAGECONFIG[numa] = ",--disable-numa,numactl"
SRC_URI = "git://git.kernel.dk/fio.git;branch=master;tag=${BP}"
SRC_URI = " \
git://git.kernel.dk/fio.git;branch=master;tag=${BP} \
file://0001-fix-musl-builds.patch \
"
SRCREV = "ed675d3477a70a42d2e757b713f6c7125a27cdca"
SRC_URI += "file://CVE-2025-10823.patch"