projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c3bac6
)
io_uring: remove extra ->file check in poll prep
author
Pavel Begunkov
<asml.silence@gmail.com>
Sun, 18 Oct 2020 09:17:41 +0000
(10:17 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Mon, 19 Oct 2020 19:29:29 +0000
(13:29 -0600)
io_poll_add_prep() doesn't need to verify ->file because it's already
done in io_init_req().
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
fs/io_uring.c
patch
|
blob
|
history
diff --git
a/fs/io_uring.c
b/fs/io_uring.c
index
620a11f
..
9f65ec8
100644
(file)
--- a/
fs/io_uring.c
+++ b/
fs/io_uring.c
@@
-5347,8
+5347,6
@@
static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe
return -EINVAL;
if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
return -EINVAL;
- if (!poll->file)
- return -EBADF;
events = READ_ONCE(sqe->poll32_events);
#ifdef __BIG_ENDIAN