diff options
author | Ming Lei <ming.lei@redhat.com> | 2025-03-22 12:32:11 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2025-03-22 17:35:08 +0300 |
commit | 9413c0ca8e455efb16b81f2c99061f6eb3d38281 (patch) | |
tree | 6aba42a1f4d8760f26a8ce90381d941f59122201 | |
parent | f2639ed11e256b957690e241bb04ec9912367d60 (diff) | |
download | linux-9413c0ca8e455efb16b81f2c99061f6eb3d38281.tar.xz |
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 |