Hi Linus,
Set of changes/improvements for io_uring that are queued up for 5.2.
This pull request contains:
- Fix of a shadowed variable (Colin)
- Add support for draining commands (me)
- Add support for sync_file_range() (me)
- Add eventfd support (me)
- cpu_online() fix (Shenghui)
- Removal of a redundant ->error assignment (Stefan)
Please pull!
git://git.kernel.dk/linux-block.git tags/for-5.2/io_uring-20190507
----------------------------------------------------------------
Colin Ian King (1):
io_uring: fix shadowed variable ret return code being not checked
Jens Axboe (4):
io_uring: add support for marking commands as draining
fs: add sync_file_range() helper
io_uring: add support for IORING_OP_SYNC_FILE_RANGE
io_uring: add support for eventfd notifications
Shenghui Wang (1):
io_uring: use cpu_online() to check p->sq_thread_cpu instead of
cpu_possible()
Stefan Bühler (1):
req->error only used for iopoll
fs/io_uring.c | 194 ++++++++++++++++++++++++++++++++++++++++--
fs/sync.c | 135 +++++++++++++++--------------
include/linux/fs.h | 3 +
include/uapi/linux/io_uring.h | 5 ++
4 files changed, 267 insertions(+), 70 deletions(-)
--
Jens Axboe