diff options
author | Eric Sandeen <sandeen@redhat.com> | 2012-11-08 20:22:46 +0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2012-11-08 20:22:46 +0400 |
commit | 37be2f59d3149b95afaeeeff94edde2c07f165d2 (patch) | |
tree | e24a689476b15f3d39aa71026e8db67a8b57b545 /fs/ext4/xattr.c | |
parent | 6d138ced751d4e41e02c38ad55d1b3cd2913b150 (diff) | |
download | linux-37be2f59d3149b95afaeeeff94edde2c07f165d2.tar.xz |
ext4: remove ext4_handle_release_buffer()
ext4_handle_release_buffer() was intended to remove journal
write access from a buffer, but it doesn't actually do anything
at all other than add a BUFFER_TRACE point, but it's not reliably
used for that either. Remove all the associated dead code.
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Diffstat (limited to 'fs/ext4/xattr.c')
-rw-r--r-- | fs/ext4/xattr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 2cdb98d62980..b1adda1b750d 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -794,7 +794,6 @@ ext4_xattr_block_set(handle_t *handle, struct inode *inode, int offset = (char *)s->here - bs->bh->b_data; unlock_buffer(bs->bh); - ext4_handle_release_buffer(handle, bs->bh); if (ce) { mb_cache_entry_release(ce); ce = NULL; |