diff options
author | Zheng Liu <wenqing.lz@taobao.com> | 2012-11-08 14:34:04 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-11-08 14:34:04 -0500 |
commit | 19b303d8b5a0e8150a4697c01ca03e75a0a17469 (patch) | |
tree | 1b9ea24684bb2f1be1682c95170846e21857fc0b /fs/ext4/indirect.c | |
parent | b5645534ce84c21695c2f82d4d4f67cf2a67229a (diff) | |
download | linux-19b303d8b5a0e8150a4697c01ca03e75a0a17469.tar.bz2 |
ext4: print map->m_flags in trace_ext4_ext/ind_map_blocks_exit
When we use trace_ext4_ext/ind_map_blocks_exit, print the value of
map->m_flags in order that we can understand the extent's current
status.
Reviewed-by: Lukas Czerner <lczerner@redhat.com>
Signed-off-by: Zheng Liu <wenqing.lz@taobao.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/indirect.c')
-rw-r--r-- | fs/ext4/indirect.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/indirect.c b/fs/ext4/indirect.c index 792e388e7b44..292337f27c9c 100644 --- a/fs/ext4/indirect.c +++ b/fs/ext4/indirect.c @@ -755,8 +755,7 @@ cleanup: partial--; } out: - trace_ext4_ind_map_blocks_exit(inode, map->m_lblk, - map->m_pblk, map->m_len, err); + trace_ext4_ind_map_blocks_exit(inode, map, err); return err; } |