projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3218e5d
)
io_uring: remove extra TIF_NOTIFY_SIGNAL check
author
Pavel Begunkov
<asml.silence@gmail.com>
Sat, 25 Jun 2022 10:53:00 +0000
(11:53 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Mon, 25 Jul 2022 00:39:16 +0000
(18:39 -0600)
io_run_task_work() accounts for TIF_NOTIFY_SIGNAL, so no need to have an
second check in io_run_task_work_sig().
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link:
https://lore.kernel.org/r/52ce41a592ad904511697f432141e5690fd4b968.1656153285.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/io_uring.c
patch
|
blob
|
history
diff --git
a/io_uring/io_uring.c
b/io_uring/io_uring.c
index 86a0b0c6f5bf77c2c65213ce997b0eed5c3fca8a..f40526426db8133d3c591ade4f954ac7f133f332 100644
(file)
--- a/
io_uring/io_uring.c
+++ b/
io_uring/io_uring.c
@@
-2205,8
+2205,6
@@
int io_run_task_work_sig(void)
{
if (io_run_task_work())
return 1;
- if (test_thread_flag(TIF_NOTIFY_SIGNAL))
- return -ERESTARTSYS;
if (task_sigpending(current))
return -EINTR;
return 0;