diff options
author | Geliang Tang <geliangtang@163.com> | 2016-03-10 00:18:57 -0500 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2016-03-10 00:18:57 -0500 |
commit | a8ed9b8695065d37d45efc446efbde5654f9f7c2 (patch) | |
tree | 9cc36d3755256f967544d36fb25aeb8f4be8294b /fs/ext4/inline.c | |
parent | b8a07463c8c5fd7c609590c7cd9eda897a1b6cd6 (diff) | |
download | talos-obmc-linux-a8ed9b8695065d37d45efc446efbde5654f9f7c2.tar.gz talos-obmc-linux-a8ed9b8695065d37d45efc446efbde5654f9f7c2.zip |
ext4: drop unneeded BUFFER_TRACE in ext4_delete_inline_entry()
BUFFER_TRACE info "call ext4_handle_dirty_metadata" doesn't match the
code, so drop it.
Signed-off-by: Geliang Tang <geliangtang@163.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/inline.c')
-rw-r--r-- | fs/ext4/inline.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/inline.c b/fs/ext4/inline.c index 36d8cc9327f5..7cbdd3752ba5 100644 --- a/fs/ext4/inline.c +++ b/fs/ext4/inline.c @@ -1697,7 +1697,6 @@ int ext4_delete_inline_entry(handle_t *handle, if (err) goto out; - BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata"); err = ext4_mark_inode_dirty(handle, dir); if (unlikely(err)) goto out; |