diff options
author | Stefan Metzmacher <metze@samba.org> | 2022-08-11 09:11:14 +0200 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-08-11 10:56:13 -0600 |
commit | da2634e89caa40d7546b0566ab80ff31567861c9 (patch) | |
tree | a03cfd82de3df40cf42e77e4e5964583121e83b5 /io_uring | |
parent | 3ed159c984079baedff740505d609badb8538e0d (diff) |
io_uring: consistently make use of io_notif_to_data()
This makes the assignment typesafe. It prepares
changing io_kiocb_to_cmd() in the next commit.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Link: https://lore.kernel.org/r/8da6e9d12cf95ad4bc73274406d12bca7aabf72e.1660201408.git.metze@samba.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring')
-rw-r--r-- | io_uring/notif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/notif.c b/io_uring/notif.c index b5f989dff9de..48d29dead62a 100644 --- a/io_uring/notif.c +++ b/io_uring/notif.c @@ -100,7 +100,7 @@ __cold int io_notif_unregister(struct io_ring_ctx *ctx) if (!notif) continue; - nd = io_kiocb_to_cmd(notif); + nd = io_notif_to_data(notif); slot->notif = NULL; if (!refcount_dec_and_test(&nd->uarg.refcnt)) continue; |