diff options
author | Christoph Hellwig <hch@tuxera.com> | 2010-11-23 08:37:40 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2010-11-23 08:37:40 -0500 |
commit | 6d1bbfc4c0458c514126ccf7d6ce9232d9dbc872 (patch) | |
tree | abcea1a2ec38c51a43161860109b16d34777f2fb /fs/hfsplus/btree.c | |
parent | 6f80dfe55fcbde1e588bc2cfa1273403b710872d (diff) |
hfsplus: silence a few debug printks
Turn a few noisy debug printks that show up during xfstests into
complied out debug print statements.
Signed-off-by: Christoph Hellwig <hch@tuxera.com>
Diffstat (limited to 'fs/hfsplus/btree.c')
-rw-r--r-- | fs/hfsplus/btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/hfsplus/btree.c b/fs/hfsplus/btree.c index 22e4d4e32999..97556f932d57 100644 --- a/fs/hfsplus/btree.c +++ b/fs/hfsplus/btree.c | |||
@@ -287,7 +287,7 @@ struct hfs_bnode *hfs_bmap_alloc(struct hfs_btree *tree) | |||
287 | kunmap(*pagep); | 287 | kunmap(*pagep); |
288 | nidx = node->next; | 288 | nidx = node->next; |
289 | if (!nidx) { | 289 | if (!nidx) { |
290 | printk(KERN_DEBUG "hfs: create new bmap node...\n"); | 290 | dprint(DBG_BNODE_MOD, "hfs: create new bmap node.\n"); |
291 | next_node = hfs_bmap_new_bmap(node, idx); | 291 | next_node = hfs_bmap_new_bmap(node, idx); |
292 | } else | 292 | } else |
293 | next_node = hfs_bnode_find(tree, nidx); | 293 | next_node = hfs_bnode_find(tree, nidx); |