summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorzhangyi (F)2019-02-21 17:29:10 +0100
committerGreg Kroah-Hartman2019-05-22 07:37:46 +0200
commit6172ae55a187378b091282c7a5b4895635e63371 (patch)
treed0c3fc03df190c4580f1f00449b71019b0b0312a /fs/ext4
parentpstore: Refactor compression initialization (diff)
downloadkernel-qcow2-linux-6172ae55a187378b091282c7a5b4895635e63371.tar.gz
kernel-qcow2-linux-6172ae55a187378b091282c7a5b4895635e63371.tar.xz
kernel-qcow2-linux-6172ae55a187378b091282c7a5b4895635e63371.zip
ext4: fix compile error when using BUFFER_TRACE
commit ddccb6dbe780d68133191477571cb7c69e17bb8c upstream. Fix compile error below when using BUFFER_TRACE. fs/ext4/inode.c: In function ‘ext4_expand_extra_isize’: fs/ext4/inode.c:5979:19: error: request for member ‘bh’ in something not a structure or union BUFFER_TRACE(iloc.bh, "get_write_access"); Fixes: c03b45b853f58 ("ext4, project: expand inode extra size if possible") Signed-off-by: zhangyi (F) <yi.zhang@huawei.com> Signed-off-by: Theodore Ts'o <tytso@mit.edu> Reviewed-by: Jan Kara <jack@suse.cz> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/inode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
index 2c43c5b92229..18884f39610f 100644
--- a/fs/ext4/inode.c
+++ b/fs/ext4/inode.c
@@ -5971,7 +5971,7 @@ int ext4_expand_extra_isize(struct inode *inode,
ext4_write_lock_xattr(inode, &no_expand);
- BUFFER_TRACE(iloc.bh, "get_write_access");
+ BUFFER_TRACE(iloc->bh, "get_write_access");
error = ext4_journal_get_write_access(handle, iloc->bh);
if (error) {
brelse(iloc->bh);