I'd like to set an kernel level i/o priority, so the reads get priority over the writes. Is that something that can be supported via zio public APIs? The easiest way I could come up with was to hack into zio and set sqe.ioprio = ... in the submit function in io_uring.zig (for Linux) -- but that applies way more broadly than I'd like.
I'd like to set an kernel level i/o priority, so the reads get priority over the writes. Is that something that can be supported via zio public APIs? The easiest way I could come up with was to hack into zio and set
sqe.ioprio = ...in thesubmitfunction in io_uring.zig (for Linux) -- but that applies way more broadly than I'd like.