Sidong Yang
Sidong Yang
Hi, I found some bug that the code hang when using iopoll without sqpoll. This bug can be reproduced with example below. ```rust let mut builder = tokio_uring::builder(); builder.uring_builder(&tokio_uring::uring_builder().setup_iopoll()); let...
- In iopoll without sqpoll mode, we need to submit repeatedly until we get completion. This patch adds some future that keep calling wake() for parking thread so runtime will...
Hi, we use tokio uring well in our work. and also we need IO_LINK feature in tokio uring. I agree that we should consider API design for the link feature....
- set flags - readv & writev & fixed
- UnsubmittedRead for io/read.rs - Replace the old `Op::read` to `UnsubmittedOneshot::read` - Introduce new API `unsubmitted_read[_at]` for Stream, File
This patch uses BTRFS_IOC_SUBVOL_SYNC_WAIT ioctl in subvolume sync command before checking periodically and adds an option to not to use sync wait ioctl call and force to check periodically. This...
Hi, I'm using gdbstub crate very well. I'm writing code for gdbserver that controls embedded system in kernel. Preferred action is to write/read device file in implementing traits like `SingleThreadSingleStep::step()`...