]> git.ipfire.org Git - thirdparty/linux.git/commit
selftests: ublk: forbid multiple data copy modes
authorCaleb Sander Mateos <csander@purestorage.com>
Fri, 12 Dec 2025 17:17:05 +0000 (10:17 -0700)
committerJens Axboe <axboe@kernel.dk>
Fri, 12 Dec 2025 19:50:41 +0000 (12:50 -0700)
commit52bc483763262b66e51818a82e03cad0c5bfef67
treee181b503bcffc7a920f0e90f4e40efe18f544309
parentd8295408e0cf529be78ee4ed8b6758a9fb209feb
selftests: ublk: forbid multiple data copy modes

The kublk mock ublk server allows multiple data copy mode arguments to
be passed on the command line (--zero_copy, --get_data, and --auto_zc).
The ublk device will be created with all the requested feature flags,
however kublk will only use one of the modes to interact with request
data (arbitrarily preferring auto_zc over zero_copy over get_data). To
clarify the intent of the test, don't allow multiple data copy modes to
be specified. --zero_copy and --auto_zc are allowed together for
--auto_zc_fallback, which uses both copy modes.
Don't set UBLK_F_USER_COPY for zero_copy, as it's a separate feature.
Fix the test cases in test_stress_05 passing --get_data along with
--zero_copy or --auto_zc.

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
Reviewed-by: Ming Lei <ming.lei@redhat.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
tools/testing/selftests/ublk/kublk.c
tools/testing/selftests/ublk/test_stress_05.sh