diff options
author | Dylan Yudaken <dylany@fb.com> | 2022-02-24 13:51:57 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-03-10 16:32:49 +0300 |
commit | 63c36549737e8132e89ec6563d26523895ae3121 (patch) | |
tree | e595227c0df8c91e105cbb81e00223bc51b49b75 /fs | |
parent | b4aec40015953b65f2f114641e7fd7714c8df8e6 (diff) | |
download | linux-63c36549737e8132e89ec6563d26523895ae3121.tar.xz |
io_uring: documentation fixup
Fix incorrect name reference in comment. ki_filp does not exist in the
struct, but file does.
Signed-off-by: Dylan Yudaken <dylany@fb.com>
Link: https://lore.kernel.org/r/20220224105157.1332353-1-dylany@fb.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/io_uring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c index c9efb1d32fd2..f8fd3b2bb30d 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -830,7 +830,7 @@ enum { * NOTE! Each of the iocb union members has the file pointer * as the first entry in their struct definition. So you can * access the file pointer through any of the sub-structs, - * or directly as just 'ki_filp' in this struct. + * or directly as just 'file' in this struct. */ struct io_kiocb { union { |