[PATCH] netfs: Fix kernel-doc parameter name for netfs_resize_file()
Prashant Rahul <[email protected]> Wed, 24 Jun 2026 18:59:29 +0530
| Newsgroups | dev.linux.lists.netfs,org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
Update the kernel-doc comment for netfs_resize_file() to use 'ictx' instead of 'ctx', matching the actual function parameter name and fixing a kernel-doc warning. Signed-off-by: Prashant Rahul <[email protected]> --- include/linux/netfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/netfs.h b/include/linux/netfs.h index 243c0f7379388..bdc270e84b307 100644 --- a/include/linux/netfs.h +++ b/include/linux/netfs.h @@ -753,7 +753,7 @@ static inline void netfs_inode_init(struct netfs_inode *ctx, /** * netfs_resize_file - Note that a file got resized - * @ctx: The netfs inode being resized + * @ictx: The netfs inode being resized * @new_i_size: The new file size * @changed_on_server: The change was applied to the server * --- base-commit: 4e5dfb7c84012007c3c7061126491bbc92d71bf1 change-id: 20260624-netfs-doc-fix-cae0bf8825bc Best regards, -- Prashant Rahul <[email protected]>