diff options
author | Yang Li <yang.lee@linux.alibaba.com> | 2023-08-11 09:43:59 +0800 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2023-08-15 08:32:45 +0200 |
commit | 89cbd4c036ba44eadc495820e72c5c36273abb76 (patch) | |
tree | 53a4311a13638d34ee790e2a9c8664554d48b7aa /fs | |
parent | d220efa20bba1ecc3fba3b14b2bf404a1557acd0 (diff) |
fs: Fix one kernel-doc comment
Fix one kernel-doc comment to silence the warning:
fs/read_write.c:88: warning: Function parameter or member 'maxsize' not described in 'generic_file_llseek_size'
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Message-Id: <20230811014359.4960-1-yang.lee@linux.alibaba.com>
Signed-off-by: Christian Brauner <brauner@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/read_write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/read_write.c b/fs/read_write.c index b07de77ef126..4771701c896b 100644 --- a/fs/read_write.c +++ b/fs/read_write.c @@ -71,7 +71,7 @@ EXPORT_SYMBOL(vfs_setpos); * @file: file structure to seek on * @offset: file offset to seek to * @whence: type of seek - * @size: max size of this file in file system + * @maxsize: max size of this file in file system * @eof: offset used for SEEK_END position * * This is a variant of generic_file_llseek that allows passing in a custom |