diff options
author | Jan Kara | 2014-06-11 17:29:26 +0200 |
---|---|---|
committer | Jan Kara | 2014-06-11 17:32:10 +0200 |
commit | 19ef1229bc2e2468bdf4ea594a57e4287ffa1e6b (patch) | |
tree | bd3f419d307efc736b39b9813a4b8da88ab93fc6 /fs | |
parent | ext3: Fix deadlock in data=journal mode when fs is frozen (diff) | |
download | kernel-qcow2-linux-19ef1229bc2e2468bdf4ea594a57e4287ffa1e6b.tar.gz kernel-qcow2-linux-19ef1229bc2e2468bdf4ea594a57e4287ffa1e6b.tar.xz kernel-qcow2-linux-19ef1229bc2e2468bdf4ea594a57e4287ffa1e6b.zip |
reiserfs: Fix compilation breakage with CONFIG_REISERFS_CHECK
There was a bug in debug printout when CONFIG_REISERFS_CHECK was
enabled so one of the assertions in do_balan.c didn't compile. Fix it.
Fixes: 0080e9f9d3ac717537dbd6db1fc8ef72ce0b9cc1
Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/reiserfs/do_balan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/do_balan.c b/fs/reiserfs/do_balan.c index 547575c1c3c0..54fdf196bfb2 100644 --- a/fs/reiserfs/do_balan.c +++ b/fs/reiserfs/do_balan.c @@ -1249,7 +1249,7 @@ static void balance_leaf_new_nodes(struct tree_balance *tb, || buffer_journal_dirty(tb->S_new[i]) || buffer_dirty(tb->S_new[i]), "PAP-12247: S_new[%d] : (%b)", - i, format_bh(tb->S_new[i])); + i, tb->S_new[i]); } } |