aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2011-01-08 22:37:20 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-10 10:38:53 -0500
commit2a8c0c68487a68441e701f493f43fd547d87c8df (patch)
tree0731938d08b2d171aa40cff6c24f6183e06a9d01
parent39191628ed169510db2f3f472e1ec14e08f9690f (diff)
fs: fix dcache.h kernel-doc notation
Fix new kernel-doc notation warning in dcache.h: Warning(include/linux/dcache.h:316): Excess function parameter 'Returns' description in '__d_rcu_to_refcount' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Nick Piggin <npiggin@kernel.dk> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/dcache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h
index bd07758943e..59fcd24b146 100644
--- a/include/linux/dcache.h
+++ b/include/linux/dcache.h
@@ -307,7 +307,7 @@ extern struct dentry *__d_lookup_rcu(struct dentry *parent, struct qstr *name,
307 * __d_rcu_to_refcount - take a refcount on dentry if sequence check is ok 307 * __d_rcu_to_refcount - take a refcount on dentry if sequence check is ok
308 * @dentry: dentry to take a ref on 308 * @dentry: dentry to take a ref on
309 * @seq: seqcount to verify against 309 * @seq: seqcount to verify against
310 * @Returns: 0 on failure, else 1. 310 * Returns: 0 on failure, else 1.
311 * 311 *
312 * __d_rcu_to_refcount operates on a dentry,seq pair that was returned 312 * __d_rcu_to_refcount operates on a dentry,seq pair that was returned
313 * by __d_lookup_rcu, to get a reference on an rcu-walk dentry. 313 * by __d_lookup_rcu, to get a reference on an rcu-walk dentry.