diff options
| author | Alok Tiwari <alok.a.tiwari@oracle.com> | 2025-11-04 21:01:09 -0800 |
|---|---|---|
| committer | Jens Axboe <axboe@kernel.dk> | 2025-11-05 08:21:43 -0700 |
| commit | 59f44afbe8cfe7904e8cf8d2bb67eb86b79e58da (patch) | |
| tree | b64a43e0bec64d91ba9bb5832027a77bf1594373 /io_uring/notif.c | |
| parent | 4b25b75c30d90a2ad45eb6c79d4c71fdbb06bb4e (diff) | |
io_uring: fix typos and comment wording
Corrected spelling mistakes in comments
"reuqests" -> "requests", "noifications" -> "notifications",
"seperately" -> "separately").
Fixed a small grammar issue ("then" -> "than").
Updated "flag" -> "flags" in fdinfo.c
Signed-off-by: Alok Tiwari <alok.a.tiwari@oracle.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/notif.c')
| -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 9960bb2a32d5..f476775ba44b 100644 --- a/io_uring/notif.c +++ b/io_uring/notif.c @@ -93,7 +93,7 @@ static int io_link_skb(struct sk_buff *skb, struct ubuf_info *uarg) prev_nd = container_of(prev_uarg, struct io_notif_data, uarg); prev_notif = cmd_to_io_kiocb(prev_nd); - /* make sure all noifications can be finished in the same task_work */ + /* make sure all notifications can be finished in the same task_work */ if (unlikely(notif->ctx != prev_notif->ctx || notif->tctx != prev_notif->tctx)) return -EEXIST; |