Enable coop_taskrun flag to disable excessive interrupts for completions

This commit is contained in:
PThorpe92
2025-07-16 22:43:44 -04:00
parent 95c343586c
commit 4d09f1ab65

View File

@@ -58,6 +58,7 @@ impl UringIO {
pub fn new() -> Result<Self> {
let ring = match io_uring::IoUring::builder()
.setup_single_issuer()
.setup_coop_taskrun()
.setup_sqpoll(SQPOLL_IDLE)
.build(ENTRIES)
{