From 4d09f1ab65ab089c211c6403fccd31845f4477a4 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Wed, 16 Jul 2025 22:43:44 -0400 Subject: [PATCH] Enable coop_taskrun flag to disable excessive interrupts for completions --- core/io/io_uring.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/io/io_uring.rs b/core/io/io_uring.rs index ff1563d70..036d861b2 100644 --- a/core/io/io_uring.rs +++ b/core/io/io_uring.rs @@ -58,6 +58,7 @@ impl UringIO { pub fn new() -> Result { let ring = match io_uring::IoUring::builder() .setup_single_issuer() + .setup_coop_taskrun() .setup_sqpoll(SQPOLL_IDLE) .build(ENTRIES) {