aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-08-08 17:21:08 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-08-08 18:57:21 -0400
commitedc023caf407b74ee2eb56dda23437c5836655f3 (patch)
tree08a7e00f3543bc8e08edd950f6e602489bf90335 /fs
parentd4beaabd307b4b7853ac97013ab0d6ee69429b04 (diff)
fs/ufs/inode.c: kernel-doc warning fixes
Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Evgeniy Dushistov <dushistov@mail.ru> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/ufs/inode.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/fs/ufs/inode.c b/fs/ufs/inode.c
index 61e8a9b021dd..7c580c97990e 100644
--- a/fs/ufs/inode.c
+++ b/fs/ufs/inode.c
@@ -158,16 +158,16 @@ out:
158 158
159/** 159/**
160 * ufs_inode_getfrag() - allocate new fragment(s) 160 * ufs_inode_getfrag() - allocate new fragment(s)
161 * @inode - pointer to inode 161 * @inode: pointer to inode
162 * @fragment - number of `fragment' which hold pointer 162 * @fragment: number of `fragment' which hold pointer
163 * to new allocated fragment(s) 163 * to new allocated fragment(s)
164 * @new_fragment - number of new allocated fragment(s) 164 * @new_fragment: number of new allocated fragment(s)
165 * @required - how many fragment(s) we require 165 * @required: how many fragment(s) we require
166 * @err - we set it if something wrong 166 * @err: we set it if something wrong
167 * @phys - pointer to where we save physical number of new allocated fragments, 167 * @phys: pointer to where we save physical number of new allocated fragments,
168 * NULL if we allocate not data(indirect blocks for example). 168 * NULL if we allocate not data(indirect blocks for example).
169 * @new - we set it if we allocate new block 169 * @new: we set it if we allocate new block
170 * @locked_page - for ufs_new_fragments() 170 * @locked_page: for ufs_new_fragments()
171 */ 171 */
172static struct buffer_head * 172static struct buffer_head *
173ufs_inode_getfrag(struct inode *inode, u64 fragment, 173ufs_inode_getfrag(struct inode *inode, u64 fragment,
@@ -315,16 +315,16 @@ repeat2:
315 315
316/** 316/**
317 * ufs_inode_getblock() - allocate new block 317 * ufs_inode_getblock() - allocate new block
318 * @inode - pointer to inode 318 * @inode: pointer to inode
319 * @bh - pointer to block which hold "pointer" to new allocated block 319 * @bh: pointer to block which hold "pointer" to new allocated block
320 * @fragment - number of `fragment' which hold pointer 320 * @fragment: number of `fragment' which hold pointer
321 * to new allocated block 321 * to new allocated block
322 * @new_fragment - number of new allocated fragment 322 * @new_fragment: number of new allocated fragment
323 * (block will hold this fragment and also uspi->s_fpb-1) 323 * (block will hold this fragment and also uspi->s_fpb-1)
324 * @err - see ufs_inode_getfrag() 324 * @err: see ufs_inode_getfrag()
325 * @phys - see ufs_inode_getfrag() 325 * @phys: see ufs_inode_getfrag()
326 * @new - see ufs_inode_getfrag() 326 * @new: see ufs_inode_getfrag()
327 * @locked_page - see ufs_inode_getfrag() 327 * @locked_page: see ufs_inode_getfrag()
328 */ 328 */
329static struct buffer_head * 329static struct buffer_head *
330ufs_inode_getblock(struct inode *inode, struct buffer_head *bh, 330ufs_inode_getblock(struct inode *inode, struct buffer_head *bh,