Commit af71dda0b8e667d03eec21d25f90265eec5efea1
Committed by
Ryusuke Konishi
1 parent
d611b22f1a
Exists in
master
and in
39 other branches
nilfs2: fix whitespace coding style issues
Fixes whitespace coding style issues. Signed-off-by: Nicolas Kaiser <nikai@nikai.net> Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>
Showing 1 changed file with 7 additions and 7 deletions Side-by-side Diff
fs/nilfs2/nilfs.h
... | ... | @@ -114,19 +114,19 @@ |
114 | 114 | * Macros to check inode numbers |
115 | 115 | */ |
116 | 116 | #define NILFS_MDT_INO_BITS \ |
117 | - ((unsigned int)(1 << NILFS_DAT_INO | 1 << NILFS_CPFILE_INO | \ | |
118 | - 1 << NILFS_SUFILE_INO | 1 << NILFS_IFILE_INO | \ | |
119 | - 1 << NILFS_ATIME_INO | 1 << NILFS_SKETCH_INO)) | |
117 | + ((unsigned int)(1 << NILFS_DAT_INO | 1 << NILFS_CPFILE_INO | \ | |
118 | + 1 << NILFS_SUFILE_INO | 1 << NILFS_IFILE_INO | \ | |
119 | + 1 << NILFS_ATIME_INO | 1 << NILFS_SKETCH_INO)) | |
120 | 120 | |
121 | 121 | #define NILFS_SYS_INO_BITS \ |
122 | - ((unsigned int)(1 << NILFS_ROOT_INO) | NILFS_MDT_INO_BITS) | |
122 | + ((unsigned int)(1 << NILFS_ROOT_INO) | NILFS_MDT_INO_BITS) | |
123 | 123 | |
124 | 124 | #define NILFS_FIRST_INO(sb) (((struct the_nilfs *)sb->s_fs_info)->ns_first_ino) |
125 | 125 | |
126 | 126 | #define NILFS_MDT_INODE(sb, ino) \ |
127 | - ((ino) < NILFS_FIRST_INO(sb) && (NILFS_MDT_INO_BITS & (1 << (ino)))) | |
127 | + ((ino) < NILFS_FIRST_INO(sb) && (NILFS_MDT_INO_BITS & (1 << (ino)))) | |
128 | 128 | #define NILFS_VALID_INODE(sb, ino) \ |
129 | - ((ino) >= NILFS_FIRST_INO(sb) || (NILFS_SYS_INO_BITS & (1 << (ino)))) | |
129 | + ((ino) >= NILFS_FIRST_INO(sb) || (NILFS_SYS_INO_BITS & (1 << (ino)))) | |
130 | 130 | |
131 | 131 | /** |
132 | 132 | * struct nilfs_transaction_info: context information for synchronization |
... | ... | @@ -285,7 +285,7 @@ |
285 | 285 | extern void nilfs_error(struct super_block *, const char *, const char *, ...) |
286 | 286 | __attribute__ ((format (printf, 3, 4))); |
287 | 287 | extern void nilfs_warning(struct super_block *, const char *, const char *, ...) |
288 | - __attribute__ ((format (printf, 3, 4))); | |
288 | + __attribute__ ((format (printf, 3, 4))); | |
289 | 289 | extern struct nilfs_super_block * |
290 | 290 | nilfs_read_super_block(struct super_block *, u64, int, struct buffer_head **); |
291 | 291 | extern int nilfs_store_magic_and_option(struct super_block *, |