From ab65f57bee643c1111454281105c61fd24ca2e0b Mon Sep 17 00:00:00 2001 From: wokron Date: Tue, 8 Sep 2026 11:18:33 +0800 Subject: [PATCH] always derive io_uring ring sizes from the queue depth --- include/ublk/detail/daemon.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ublk/detail/daemon.hpp b/include/ublk/detail/daemon.hpp index 54fd162..2b59f88 100644 --- a/include/ublk/detail/daemon.hpp +++ b/include/ublk/detail/daemon.hpp @@ -121,7 +121,7 @@ struct daemon_run_t { } auto options = runtime_options ? runtime_options->build(info.queue_depth) - : condy::RuntimeOptions(); + : RuntimeOptions().build(info.queue_depth); AllocVector, decltype(alloc)> loops(alloc); loops.reserve(info.nr_hw_queues);