core/linux: Make io_uring larger

This commit is contained in:
Pekka Enberg
2024-01-24 17:25:33 +02:00
parent d2a925698d
commit 8c2926e4d1

View File

@@ -12,7 +12,7 @@ pub struct LinuxIO {
impl LinuxIO {
pub fn new() -> Result<Self> {
let ring = io_uring::IoUring::new(8)?;
let ring = io_uring::IoUring::new(128)?;
Ok(Self {
ring: Rc::new(RefCell::new(ring)),
})