diff options
author | Anton Salikhmetov <alexo@tuxera.com> | 2010-12-16 11:08:39 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@tuxera.com> | 2010-12-16 12:08:46 -0500 |
commit | 21f2296a598c4089e0a9bdf54634269ac913a693 (patch) | |
tree | f55214d1b9b0627f1a9f7951a57183e76458d079 /fs/hfsplus/hfsplus_fs.h | |
parent | 2753cc281c9a0e8a0a45ee2b8110866a9fe63bdd (diff) |
hfsplus: C99 comments clean-up
Match coding style restriction against C99 comments where
checkpatch.pl reported errors about their usage.
Signed-off-by: Anton Salikhmetov <alexo@tuxera.com>
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus/hfsplus_fs.h')
-rw-r--r-- | fs/hfsplus/hfsplus_fs.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/hfsplus/hfsplus_fs.h b/fs/hfsplus/hfsplus_fs.h index c4abec167826..a15e1c11e820 100644 --- a/fs/hfsplus/hfsplus_fs.h +++ b/fs/hfsplus/hfsplus_fs.h | |||
@@ -23,9 +23,11 @@ | |||
23 | #define DBG_EXTENT 0x00000020 | 23 | #define DBG_EXTENT 0x00000020 |
24 | #define DBG_BITMAP 0x00000040 | 24 | #define DBG_BITMAP 0x00000040 |
25 | 25 | ||
26 | //#define DBG_MASK (DBG_EXTENT|DBG_INODE|DBG_BNODE_MOD) | 26 | #if 0 |
27 | //#define DBG_MASK (DBG_BNODE_MOD|DBG_CAT_MOD|DBG_INODE) | 27 | #define DBG_MASK (DBG_EXTENT|DBG_INODE|DBG_BNODE_MOD) |
28 | //#define DBG_MASK (DBG_CAT_MOD|DBG_BNODE_REFS|DBG_INODE|DBG_EXTENT) | 28 | #define DBG_MASK (DBG_BNODE_MOD|DBG_CAT_MOD|DBG_INODE) |
29 | #define DBG_MASK (DBG_CAT_MOD|DBG_BNODE_REFS|DBG_INODE|DBG_EXTENT) | ||
30 | #endif | ||
29 | #define DBG_MASK (0) | 31 | #define DBG_MASK (0) |
30 | 32 | ||
31 | #define dprint(flg, fmt, args...) \ | 33 | #define dprint(flg, fmt, args...) \ |
@@ -62,7 +64,6 @@ struct hfs_btree { | |||
62 | unsigned int max_key_len; | 64 | unsigned int max_key_len; |
63 | unsigned int depth; | 65 | unsigned int depth; |
64 | 66 | ||
65 | //unsigned int map1_size, map_size; | ||
66 | struct mutex tree_lock; | 67 | struct mutex tree_lock; |
67 | 68 | ||
68 | unsigned int pages_per_bnode; | 69 | unsigned int pages_per_bnode; |