diff options
author | Theodore Ts'o <tytso@mit.edu> | 2013-07-01 16:12:40 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2013-07-01 16:12:40 +0400 |
commit | 21ddd568c133024196d394c43923f55cad1e7bd0 (patch) | |
tree | 2fc296ba15e286223e53f638c5f47c94f0ced7de /fs/ext4/indirect.c | |
parent | cb530541182bee14112675046331f20a1c831507 (diff) | |
download | linux-21ddd568c133024196d394c43923f55cad1e7bd0.tar.xz |
ext4: translate flag bits to strings in tracepoints
Translate the bitfields used in various flags argument to strings to
make the tracepoint output more human-readable.
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/indirect.c')
-rw-r--r-- | fs/ext4/indirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/indirect.c b/fs/ext4/indirect.c index 963d23dc1028..87b30cd357e7 100644 --- a/fs/ext4/indirect.c +++ b/fs/ext4/indirect.c @@ -624,7 +624,7 @@ cleanup: partial--; } out: - trace_ext4_ind_map_blocks_exit(inode, map, err); + trace_ext4_ind_map_blocks_exit(inode, flags, map, err); return err; } |