aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dcache.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2010-11-18 15:02:45 -0800
committerAl Viro <viro@zeniv.linux.org.uk>2011-01-12 20:06:55 -0500
commit1c977540fda4bf65ab467d110f5d840fc27e7608 (patch)
tree25e4ebf271915709f12ff8274c57f3d2a561b08d /fs/dcache.c
parent66cb76666d69502fe982990b2cff5b6d607fd3b1 (diff)
downloadkernel_samsung_smdk4412-1c977540fda4bf65ab467d110f5d840fc27e7608.zip
kernel_samsung_smdk4412-1c977540fda4bf65ab467d110f5d840fc27e7608.tar.gz
kernel_samsung_smdk4412-1c977540fda4bf65ab467d110f5d840fc27e7608.tar.bz2
fs: fix kernel-doc for dcache::d_validate
Fix function parameter kernel-doc for d_validate(): Warning(fs/dcache.c:1495): No description found for parameter 'parent' Warning(fs/dcache.c:1495): Excess function parameter 'dparent' description in 'd_validate' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Alexander Viro <viro@zeniv.linux.org.uk> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r--fs/dcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 5ec5826..b2e9099 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1970,7 +1970,7 @@ out:
/**
* d_validate - verify dentry provided from insecure source (deprecated)
* @dentry: The dentry alleged to be valid child of @dparent
- * @dparent: The parent dentry (known to be valid)
+ * @parent: The parent dentry (known to be valid)
*
* An insecure source has sent us a dentry, here we verify it and dget() it.
* This is used by ncpfs in its readdir implementation.