projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
568035b
)
io_uring/net: use right helpers for async recycle
author
Pavel Begunkov
<asml.silence@gmail.com>
Mon, 15 Aug 2022 12:42:00 +0000
(13:42 +0100)
committer
Jens Axboe
<axboe@kernel.dk>
Tue, 16 Aug 2022 03:34:00 +0000
(21:34 -0600)
We have a helper that checks for whether a request contains anything in
->async_data or not, namely req_has_async_data(). It's better to use it
as it might have some extra considerations.
Fixes: 43e0bbbd0b0e3 ("io_uring: add netmsg cache")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link:
https://lore.kernel.org/r/b7414da4e7c3c32c31fc02dfd1355af4ccf4ca5f.1660566179.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/net.c
patch
|
blob
|
history
diff --git
a/io_uring/net.c
b/io_uring/net.c
index 6d71748e2c5af0150f112726a40dc0594d0ab63c..2129562bfd9f3bf7e654ae2df8a0bb028b65feca 100644
(file)
--- a/
io_uring/net.c
+++ b/
io_uring/net.c
@@
-116,7
+116,7
@@
static void io_netmsg_recycle(struct io_kiocb *req, unsigned int issue_flags)
{
struct io_async_msghdr *hdr = req->async_data;
- if (!
hdr
|| issue_flags & IO_URING_F_UNLOCKED)
+ if (!
req_has_async_data(req)
|| issue_flags & IO_URING_F_UNLOCKED)
return;
/* Let normal cleanup path reap it if we fail adding to the cache */