From 8c2926e4d11fcf89b39033ccb7fdb4588b2beaac Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Wed, 24 Jan 2024 17:25:33 +0200 Subject: [PATCH] core/linux: Make io_uring larger --- core/io/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/io/linux.rs b/core/io/linux.rs index 8e21131e3..0fe0d232a 100644 --- a/core/io/linux.rs +++ b/core/io/linux.rs @@ -12,7 +12,7 @@ pub struct LinuxIO { impl LinuxIO { pub fn new() -> Result { - let ring = io_uring::IoUring::new(8)?; + let ring = io_uring::IoUring::new(128)?; Ok(Self { ring: Rc::new(RefCell::new(ring)), })