aboutsummaryrefslogtreecommitdiffstats
path: root/fs/inode.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2009-01-06 17:41:13 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-01-06 18:59:14 -0500
commit0bc02f3fa433a98631a932e77c4b1f873da35aee (patch)
tree2b502015c319f70681f294cd070bdd6bf8e308ad /fs/inode.c
parent67faaada1ebcccf29745346f1d7cb5392f46500a (diff)
fs/inode: fix kernel-doc notation
Fix kernel-doc notation: Warning(linux-2.6.28-git3//fs/inode.c:120): No description found for parameter 'sb' Warning(linux-2.6.28-git3//fs/inode.c:120): No description found for parameter 'inode' Warning(linux-2.6.28-git3//fs/inode.c:588): No description found for parameter 'sb' Warning(linux-2.6.28-git3//fs/inode.c:588): No description found for parameter 'inode' Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/inode.c')
-rw-r--r--fs/inode.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/inode.c b/fs/inode.c
index a903860bc5ac..7a6e8c2ff7b1 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -110,8 +110,8 @@ static void wake_up_inode(struct inode *inode)
110 110
111/** 111/**
112 * inode_init_always - perform inode structure intialisation 112 * inode_init_always - perform inode structure intialisation
113 * @sb - superblock inode belongs to. 113 * @sb: superblock inode belongs to
114 * @inode - inode to initialise 114 * @inode: inode to initialise
115 * 115 *
116 * These are initializations that need to be done on every inode 116 * These are initializations that need to be done on every inode
117 * allocation as the fields are not initialised by slab allocation. 117 * allocation as the fields are not initialised by slab allocation.
@@ -576,8 +576,8 @@ __inode_add_to_lists(struct super_block *sb, struct hlist_head *head,
576 576
577/** 577/**
578 * inode_add_to_lists - add a new inode to relevant lists 578 * inode_add_to_lists - add a new inode to relevant lists
579 * @sb - superblock inode belongs to. 579 * @sb: superblock inode belongs to
580 * @inode - inode to mark in use 580 * @inode: inode to mark in use
581 * 581 *
582 * When an inode is allocated it needs to be accounted for, added to the in use 582 * When an inode is allocated it needs to be accounted for, added to the in use
583 * list, the owning superblock and the inode hash. This needs to be done under 583 * list, the owning superblock and the inode hash. This needs to be done under