diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2023-12-07 13:20:35 -0800 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2023-12-20 15:02:58 -0800 |
commit | 6915f40c3a43740207f7af70bab96c20eed22aa3 (patch) | |
tree | 1b627dc0ced705c8ce268db8c968faf04d66c30e /fs/freevxfs | |
parent | 2bb31b37d3d339d8c59298b72d78ff5484eeb595 (diff) | |
download | linux-stable-6915f40c3a43740207f7af70bab96c20eed22aa3.tar.gz linux-stable-6915f40c3a43740207f7af70bab96c20eed22aa3.tar.bz2 linux-stable-6915f40c3a43740207f7af70bab96c20eed22aa3.zip |
freevxfs: lookup: fix function params kernel-doc
Correct the function parameter kernel-doc notation to prevent warnings:
vxfs_lookup.c:192: warning: Function parameter or member 'ctx' not described in 'vxfs_readdir'
vxfs_lookup.c:192: warning: Excess function parameter 'retp' description in 'vxfs_readdir'
vxfs_lookup.c:192: warning: Excess function parameter 'filler' description in 'vxfs_readdir'
Link: https://lkml.kernel.org/r/20231207212035.25345-3-rdunlap@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'fs/freevxfs')
-rw-r--r-- | fs/freevxfs/vxfs_lookup.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/freevxfs/vxfs_lookup.c b/fs/freevxfs/vxfs_lookup.c index f04ba2ed1e1a..1b0bca8b4cc6 100644 --- a/fs/freevxfs/vxfs_lookup.c +++ b/fs/freevxfs/vxfs_lookup.c @@ -177,8 +177,7 @@ vxfs_lookup(struct inode *dip, struct dentry *dp, unsigned int flags) /** * vxfs_readdir - read a directory * @fp: the directory to read - * @retp: return buffer - * @filler: filldir callback + * @ctx: dir_context for filldir/readdir * * Description: * vxfs_readdir fills @retp with directory entries from @fp |