diff options
author | Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> | 2016-05-23 19:23:48 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-05-23 20:04:14 -0400 |
commit | 076a378ba6e6b6ddd5f2336aa0876349b7d36409 (patch) | |
tree | 150c71c85a086bb76e66e08e2fd0d5ee1b7db166 /fs/nilfs2/bmap.h | |
parent | 80d6505232ec2476eef8d988ea98ac81eb2e0975 (diff) |
nilfs2: fix block comments
This fixes block comments with proper formatting to eliminate the
following checkpatch.pl warnings:
"WARNING: Block comments use * on subsequent lines"
"WARNING: Block comments use a trailing */ on a separate line"
Link: http://lkml.kernel.org/r/1462886671-3521-8-git-send-email-konishi.ryusuke@lab.ntt.co.jp
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nilfs2/bmap.h')
-rw-r--r-- | fs/nilfs2/bmap.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/fs/nilfs2/bmap.h b/fs/nilfs2/bmap.h index a6852807b22c..b6a4c8f93ac8 100644 --- a/fs/nilfs2/bmap.h +++ b/fs/nilfs2/bmap.h | |||
@@ -122,10 +122,14 @@ struct nilfs_bmap { | |||
122 | 122 | ||
123 | /* pointer type */ | 123 | /* pointer type */ |
124 | #define NILFS_BMAP_PTR_P 0 /* physical block number (i.e. LBN) */ | 124 | #define NILFS_BMAP_PTR_P 0 /* physical block number (i.e. LBN) */ |
125 | #define NILFS_BMAP_PTR_VS 1 /* virtual block number (single | 125 | #define NILFS_BMAP_PTR_VS 1 /* |
126 | version) */ | 126 | * virtual block number (single |
127 | #define NILFS_BMAP_PTR_VM 2 /* virtual block number (has multiple | 127 | * version) |
128 | versions) */ | 128 | */ |
129 | #define NILFS_BMAP_PTR_VM 2 /* | ||
130 | * virtual block number (has multiple | ||
131 | * versions) | ||
132 | */ | ||
129 | #define NILFS_BMAP_PTR_U (-1) /* never perform pointer operations */ | 133 | #define NILFS_BMAP_PTR_U (-1) /* never perform pointer operations */ |
130 | 134 | ||
131 | #define NILFS_BMAP_USE_VBN(bmap) ((bmap)->b_ptr_type > 0) | 135 | #define NILFS_BMAP_USE_VBN(bmap) ((bmap)->b_ptr_type > 0) |