diff options
author | Christian Brauner <brauner@kernel.org> | 2024-05-28 14:33:20 +0200 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2024-05-28 14:34:15 +0200 |
commit | db003a28e03f95f2bcb63f037a2078b8870b1ecd (patch) | |
tree | 718fc8386921b9427b06cc9f44c85de3638126a5 /include/linux/netfs.h | |
parent | 0c07c273a5fe1a25d4f477fe7edf64b3e8b19b3d (diff) | |
download | linux-stable-db003a28e03f95f2bcb63f037a2078b8870b1ecd.tar.gz linux-stable-db003a28e03f95f2bcb63f037a2078b8870b1ecd.tar.bz2 linux-stable-db003a28e03f95f2bcb63f037a2078b8870b1ecd.zip |
netfs: fix kernel doc for nets_wait_for_outstanding_io()
The @inode parameter wasn't documented leading to new doc build
warnings.
Fixes: f89ea63f1c65 ("netfs, 9p: Fix race between umount and async request completion")
Link: https://lore.kernel.org/r/20240528133050.7e09d78e@canb.auug.org.au
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'include/linux/netfs.h')
-rw-r--r-- | include/linux/netfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfs.h b/include/linux/netfs.h index 3ca3906bb8da..5d0288938cc2 100644 --- a/include/linux/netfs.h +++ b/include/linux/netfs.h @@ -521,7 +521,7 @@ static inline struct fscache_cookie *netfs_i_cookie(struct netfs_inode *ctx) /** * netfs_wait_for_outstanding_io - Wait for outstanding I/O to complete - * @ctx: The netfs inode to wait on + * @inode: The netfs inode to wait on * * Wait for outstanding I/O requests of any type to complete. This is intended * to be called from inode eviction routines. This makes sure that any |