Inclue cmdprio for Android as well. Without the patch, make for Android fails at link time: engines/io_uring.c:824: error: undefined reference to 'fio_cmdprio_init' engines/io_uring.c:456: error: undefined reference to 'fio_cmdprio_set_ioprio' ... Fixes e27b9ff0e ("cmdprio: move cmdprio function definitions to a new cmdprio.c file") Signed-off-by: Gwendal Grignou <gwendal@xxxxxxxxxxxx> --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index e9028dce..04c1e0a7 100644 --- a/Makefile +++ b/Makefile @@ -236,6 +236,7 @@ endif ifeq ($(CONFIG_TARGET_OS), Android) SOURCE += diskutil.c fifo.c blktrace.c cgroup.c trim.c profiles/tiobench.c \ oslib/linux-dev-lookup.c engines/io_uring.c + cmdprio_SRCS = engines/cmdprio.c ifdef CONFIG_HAS_BLKZONED SOURCE += oslib/linux-blkzoned.c endif -- 2.34.0.rc1.387.gb447b232ab-goog