diff options
author | 2025-03-22 17:32:11 +0800 | |
---|---|---|
committer | 2025-03-22 08:35:08 -0600 | |
commit | 9413c0ca8e455efb16b81f2c99061f6eb3d38281 (patch) | |
tree | 6aba42a1f4d8760f26a8ce90381d941f59122201 | |
parent | selftests: ublk: add single sqe allocator helper (diff) | |
download | wireguard-linux-9413c0ca8e455efb16b81f2c99061f6eb3d38281.tar.xz wireguard-linux-9413c0ca8e455efb16b81f2c99061f6eb3d38281.zip |
selftests: ublk: increase max buffer size to 1MB
Increase max buffer size to 1MB, and 64KB is too small to evaluate
performance with builtin ublk server implementation.
Signed-off-by: Ming Lei <ming.lei@redhat.com>
Link: https://lore.kernel.org/r/20250322093218.431419-4-ming.lei@redhat.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
-rw-r--r-- | tools/testing/selftests/ublk/kublk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/ublk/kublk.h b/tools/testing/selftests/ublk/kublk.h index 9cd7ab62f258..40b89dcf0704 100644 --- a/tools/testing/selftests/ublk/kublk.h +++ b/tools/testing/selftests/ublk/kublk.h @@ -40,7 +40,7 @@ /* queue idle timeout */ #define UBLKSRV_IO_IDLE_SECS 20 -#define UBLK_IO_MAX_BYTES 65536 +#define UBLK_IO_MAX_BYTES (1 << 20) #define UBLK_MAX_QUEUES 4 #define UBLK_QUEUE_DEPTH 128 |