diff options
author | Fabian Frederick <fabf@skynet.be> | 2014-08-06 19:03:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-06 21:01:12 -0400 |
commit | 2122da26c3511b308fe9027fc98d0c9b62035d0f (patch) | |
tree | c0736f12d240428d2ed2f8974598be2e467167e1 /fs | |
parent | 1332429b305044aa75163399ae960c6535828ce6 (diff) |
fs/logfs/readwrite.c: kernel-doc warning fixes
s/-/:/ and fix variable names.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Joern Engel <joern@logfs.org>
Cc: Prasad Joshi <prasadjoshi.linux@gmail.com>
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/logfs/readwrite.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/fs/logfs/readwrite.c b/fs/logfs/readwrite.c index 48140315f627..380d86e1ab45 100644 --- a/fs/logfs/readwrite.c +++ b/fs/logfs/readwrite.c | |||
@@ -1019,11 +1019,11 @@ static int __logfs_is_valid_block(struct inode *inode, u64 bix, u64 ofs) | |||
1019 | /** | 1019 | /** |
1020 | * logfs_is_valid_block - check whether this block is still valid | 1020 | * logfs_is_valid_block - check whether this block is still valid |
1021 | * | 1021 | * |
1022 | * @sb - superblock | 1022 | * @sb: superblock |
1023 | * @ofs - block physical offset | 1023 | * @ofs: block physical offset |
1024 | * @ino - block inode number | 1024 | * @ino: block inode number |
1025 | * @bix - block index | 1025 | * @bix: block index |
1026 | * @level - block level | 1026 | * @gc_level: block level |
1027 | * | 1027 | * |
1028 | * Returns 0 if the block is invalid, 1 if it is valid and 2 if it will | 1028 | * Returns 0 if the block is invalid, 1 if it is valid and 2 if it will |
1029 | * become invalid once the journal is written. | 1029 | * become invalid once the journal is written. |
@@ -2226,10 +2226,9 @@ void btree_write_block(struct logfs_block *block) | |||
2226 | * | 2226 | * |
2227 | * @inode: parent inode (ifile or directory) | 2227 | * @inode: parent inode (ifile or directory) |
2228 | * @buf: object to write (inode or dentry) | 2228 | * @buf: object to write (inode or dentry) |
2229 | * @n: object size | 2229 | * @count: object size |
2230 | * @_pos: object number (file position in blocks/objects) | 2230 | * @bix: block index |
2231 | * @flags: write flags | 2231 | * @flags: write flags |
2232 | * @lock: 0 if write lock is already taken, 1 otherwise | ||
2233 | * @shadow_tree: shadow below this inode | 2232 | * @shadow_tree: shadow below this inode |
2234 | * | 2233 | * |
2235 | * FIXME: All caller of this put a 200-300 byte variable on the stack, | 2234 | * FIXME: All caller of this put a 200-300 byte variable on the stack, |