From: Dylan Yudaken Date: Thu, 24 Feb 2022 10:51:57 +0000 (-0800) Subject: io_uring: documentation fixup X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=6810a554d2740bef3883cf3d71057aaa129e1ce5;p=users%2Fhch%2Fblock.git 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 Link: https://lore.kernel.org/r/20220224105157.1332353-1-dylany@fb.com Signed-off-by: Jens Axboe --- diff --git a/fs/io_uring.c b/fs/io_uring.c index e796d40ee8e9..8f26c4602384 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 {