mirror of
https://github.com/torvalds/linux.git
synced 2026-04-25 01:52:32 -04:00
Use io_uring vectored fixed kernel buffer for handling stripe IO. Signed-off-by: Ming Lei <ming.lei@redhat.com> Link: https://lore.kernel.org/r/20250325135155.935398-5-ming.lei@redhat.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
33 lines
790 B
Makefile
33 lines
790 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CFLAGS += -O3 -Wl,-no-as-needed -Wall -I $(top_srcdir)
|
|
LDLIBS += -lpthread -lm -luring
|
|
|
|
TEST_PROGS := test_generic_01.sh
|
|
TEST_PROGS += test_generic_02.sh
|
|
TEST_PROGS += test_generic_03.sh
|
|
|
|
TEST_PROGS += test_null_01.sh
|
|
TEST_PROGS += test_null_02.sh
|
|
TEST_PROGS += test_loop_01.sh
|
|
TEST_PROGS += test_loop_02.sh
|
|
TEST_PROGS += test_loop_03.sh
|
|
TEST_PROGS += test_loop_04.sh
|
|
TEST_PROGS += test_loop_05.sh
|
|
TEST_PROGS += test_stripe_01.sh
|
|
TEST_PROGS += test_stripe_02.sh
|
|
TEST_PROGS += test_stripe_03.sh
|
|
TEST_PROGS += test_stripe_04.sh
|
|
|
|
TEST_PROGS += test_stress_01.sh
|
|
TEST_PROGS += test_stress_02.sh
|
|
|
|
TEST_GEN_PROGS_EXTENDED = kublk
|
|
|
|
include ../lib.mk
|
|
|
|
$(TEST_GEN_PROGS_EXTENDED): kublk.c null.c file_backed.c common.c stripe.c
|
|
|
|
check:
|
|
shellcheck -x -f gcc *.sh
|