Skip to content

Commit

Permalink
vfs: fix new kernel-doc warnings
Browse files Browse the repository at this point in the history
Move kernel-doc notation to immediately before its function to eliminate
kernel-doc warnings introduced by commit db14fc3 ("vfs: add
d_walk()")

  Warning(fs/dcache.c:1343): No description found for parameter 'data'
  Warning(fs/dcache.c:1343): No description found for parameter 'dentry'
  Warning(fs/dcache.c:1343): Excess function parameter 'parent' description in 'check_mount'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Miklos Szeredi <mszeredi@suse.cz>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Oct 22, 2013
1 parent 606d6fe commit 69c88dc
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions fs/dcache.c
Original file line number Diff line number Diff line change
Expand Up @@ -1331,14 +1331,6 @@ static void d_walk(struct dentry *parent, void *data,
* list is non-empty and continue searching.
*/

/**
* have_submounts - check for mounts over a dentry
* @parent: dentry to check.
*
* Return true if the parent or its subdirectories contain
* a mount point
*/

static enum d_walk_ret check_mount(void *data, struct dentry *dentry)
{
int *ret = data;
Expand All @@ -1349,6 +1341,13 @@ static enum d_walk_ret check_mount(void *data, struct dentry *dentry)
return D_WALK_CONTINUE;
}

/**
* have_submounts - check for mounts over a dentry
* @parent: dentry to check.
*
* Return true if the parent or its subdirectories contain
* a mount point
*/
int have_submounts(struct dentry *parent)
{
int ret = 0;
Expand Down

0 comments on commit 69c88dc

Please sign in to comment.