diff options
author | Yongqiang Yang <xiaoqiangnk@gmail.com> | 2011-11-01 18:59:26 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2011-11-01 18:59:26 -0400 |
commit | bf52c6f7af55c48ab0fd5f990460b884b428d906 (patch) | |
tree | 8100b2e84bc4ce00802af3e37d00908aaacdcadf /fs/ext4 | |
parent | 32de67569059d22b02dd9323a40220d953642b7e (diff) |
ext4: let ext4_ext_rm_leaf work with EXT_DEBUG defined
The variable 'block' is removed by commit 750c9c47, so use the
replacement ex_ee_block instead.
Signed-off-by: Yongqiang Yang <xiaoqiangnk@gmail.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r-- | fs/ext4/extents.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 8cacaf645e36..61fa9e1614af 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c | |||
@@ -2424,7 +2424,7 @@ ext4_ext_rm_leaf(handle_t *handle, struct inode *inode, | |||
2424 | if (err) | 2424 | if (err) |
2425 | goto out; | 2425 | goto out; |
2426 | 2426 | ||
2427 | ext_debug("new extent: %u:%u:%llu\n", block, num, | 2427 | ext_debug("new extent: %u:%u:%llu\n", ex_ee_block, num, |
2428 | ext4_ext_pblock(ex)); | 2428 | ext4_ext_pblock(ex)); |
2429 | ex--; | 2429 | ex--; |
2430 | ex_ee_block = le32_to_cpu(ex->ee_block); | 2430 | ex_ee_block = le32_to_cpu(ex->ee_block); |