index
:
linux.git
arm64-uaccess
link_path_walk
linus
master
mmu_gather-race-fix
proc-cmdline
runtime-constants
tty-splice
word-at-a-time
x86-rep-insns
x86-uaccess-cleanup
Linux kernel mainline tree
Linus Torvalds
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
fs
/
io_uring.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
io_uring: remove punt of short reads to async context
Jens Axboe
2020-01-07
1
-12
/
+0
*
io_uring: pass in 'sqe' to the prep handlers
Jens Axboe
2019-12-20
1
-242
/
+251
*
io_uring: standardize the prep methods
Jens Axboe
2019-12-20
1
-65
/
+63
*
io_uring: read 'count' for IORING_OP_TIMEOUT in prep handler
Jens Axboe
2019-12-20
1
-3
/
+8
*
io_uring: move all prep state for IORING_OP_{SEND,RECV}_MGS to prep handler
Jens Axboe
2019-12-20
1
-31
/
+33
*
io_uring: move all prep state for IORING_OP_CONNECT to prep handler
Jens Axboe
2019-12-20
1
-18
/
+22
*
io_uring: add and use struct io_rw for read/writes
Jens Axboe
2019-12-20
1
-46
/
+50
*
io_uring: use u64_to_user_ptr() consistently
Jens Axboe
2019-12-20
1
-9
/
+7
*
io_uring: io_wq_submit_work() should not touch req->rw
Jens Axboe
2019-12-18
1
-3
/
+8
*
io_uring: don't wait when under-submitting
Pavel Begunkov
2019-12-18
1
-0
/
+4
*
io_uring: warn about unhandled opcode
Jens Axboe
2019-12-17
1
-2
/
+6
*
io_uring: read opcode and user_data from SQE exactly once
Jens Axboe
2019-12-17
1
-25
/
+20
*
io_uring: make IORING_OP_TIMEOUT_REMOVE deferrable
Jens Axboe
2019-12-17
1
-10
/
+34
*
io_uring: make IORING_OP_CANCEL_ASYNC deferrable
Jens Axboe
2019-12-17
1
-4
/
+28
*
io_uring: make IORING_POLL_ADD and IORING_POLL_REMOVE deferrable
Jens Axboe
2019-12-17
1
-14
/
+54
*
io_uring: make HARDLINK imply LINK
Pavel Begunkov
2019-12-17
1
-1
/
+1
*
io_uring: any deferred command must have stable sqe data
Jens Axboe
2019-12-17
1
-49
/
+172
*
io_uring: remove 'sqe' parameter to the OP helpers that take it
Jens Axboe
2019-12-17
1
-36
/
+44
*
io_uring: fix pre-prepped issue with force_nonblock == true
Jens Axboe
2019-12-17
1
-77
/
+98
*
io_uring: fix sporadic -EFAULT from IORING_OP_RECVMSG
Jens Axboe
2019-12-15
1
-14
/
+26
*
io_uring: fix stale comment and a few typos
Brian Gianforcaro
2019-12-15
1
-4
/
+4
*
io_uring: ensure we return -EINVAL on unknown opcode
Jens Axboe
2019-12-11
1
-7
/
+14
*
io_uring: add sockets to list of files that support non-blocking issue
Jens Axboe
2019-12-10
1
-2
/
+4
*
io_uring: only hash regular files for async work execution
Jens Axboe
2019-12-10
1
-1
/
+3
*
io_uring: run next sqe inline if possible
Jens Axboe
2019-12-10
1
-4
/
+11
*
io_uring: don't dynamically allocate poll data
Jens Axboe
2019-12-10
1
-16
/
+11
*
io_uring: deferred send/recvmsg should assign iov
Jens Axboe
2019-12-10
1
-2
/
+2
*
io_uring: sqthread should grab ctx->uring_lock for submissions
Jens Axboe
2019-12-10
1
-5
/
+2
*
io_uring: allow unbreakable links
Jens Axboe
2019-12-10
1
-38
/
+46
*
io_uring: fix a typo in a comment
LimingWu
2019-12-05
1
-1
/
+1
*
io_uring: hook all linked requests via link_list
Pavel Begunkov
2019-12-05
1
-22
/
+20
*
io_uring: fix error handling in io_queue_link_head
Pavel Begunkov
2019-12-05
1
-5
/
+7
*
io_uring: use hash table for poll command lookups
Jens Axboe
2019-12-04
1
-43
/
+41
*
io_uring: ensure deferred timeouts copy necessary data
Jens Axboe
2019-12-04
1
-41
/
+42
*
io_uring: allow IO_SQE_* flags on IORING_OP_TIMEOUT
Jens Axboe
2019-12-04
1
-3
/
+0
*
io_uring: handle connect -EINPROGRESS like -EAGAIN
Jens Axboe
2019-12-03
1
-1
/
+1
*
io_uring: remove parameter ctx of io_submit_state_start
Jackie Liu
2019-12-03
1
-2
/
+2
*
io_uring: mark us with IORING_FEAT_SUBMIT_STABLE
Jens Axboe
2019-12-03
1
-1
/
+2
*
io_uring: ensure async punted connect requests copy data
Jens Axboe
2019-12-03
1
-4
/
+47
*
io_uring: ensure async punted sendmsg/recvmsg requests copy data
Jens Axboe
2019-12-03
1
-17
/
+128
*
io_uring: ensure async punted read/write requests copy iovec
Jens Axboe
2019-12-02
1
-62
/
+181
*
io_uring: add general async offload context
Jens Axboe
2019-12-02
1
-24
/
+32
*
io_uring: transform send/recvmsg() -ERESTARTSYS to -EINTR
Jens Axboe
2019-12-02
1
-0
/
+2
*
io_uring: use current task creds instead of allocating a new one
Jens Axboe
2019-12-02
1
-2
/
+2
*
Merge tag 'for-linus-20191129' of git://git.kernel.dk/linux-block
Linus Torvalds
2019-12-01
1
-6
/
+52
|
\
|
*
io_uring: fix missing kmap() declaration on powerpc
Jens Axboe
2019-11-29
1
-0
/
+1
|
*
io_uring: add mapping support for NOMMU archs
Roman Penyaev
2019-11-28
1
-6
/
+51
*
|
io_uring: make poll->wait dynamically allocated
Jens Axboe
2019-11-26
1
-12
/
+17
*
|
io_uring: cleanup io_import_fixed()
Pavel Begunkov
2019-11-26
1
-7
/
+5
*
|
io_uring: inline struct sqe_submit
Pavel Begunkov
2019-11-26
1
-91
/
+78
[next]