diff --git a/src/event/Loop.cxx b/src/event/Loop.cxx index e89da24f4..3782ad405 100644 --- a/src/event/Loop.cxx +++ b/src/event/Loop.cxx @@ -61,7 +61,8 @@ EventLoop::GetUring() noexcept if (!uring_initialized) { uring_initialized = true; try { - uring = std::make_unique(*this); + uring = std::make_unique(*this, 1024, + IORING_SETUP_SINGLE_ISSUER); } catch (...) { fprintf(stderr, "Failed to initialize io_uring: "); PrintException(std::current_exception());