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/extents.c | |
parent | b5645534ce84c21695c2f82d4d4f67cf2a67229a (diff) | |
download | linux-3.10-19b303d8b5a0e8150a4697c01ca03e75a0a17469.tar.gz linux-3.10-19b303d8b5a0e8150a4697c01ca03e75a0a17469.tar.bz2 linux-3.10-19b303d8b5a0e8150a4697c01ca03e75a0a17469.zip |
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/extents.c')
-rw-r--r-- | fs/ext4/extents.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c index 59e6e12e002..7a64c193b2a 100644 --- a/fs/ext4/extents.c +++ b/fs/ext4/extents.c @@ -4284,8 +4284,7 @@ out2: kfree(path); } - trace_ext4_ext_map_blocks_exit(inode, map->m_lblk, - newblock, map->m_len, err ? err : allocated); + trace_ext4_ext_map_blocks_exit(inode, map, err ? err : allocated); return err ? err : allocated; } |