summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/xattr.c
diff options
context:
space:
mode:
authorDavid Sterba2019-03-20 14:36:46 +0100
committerDavid Sterba2019-04-29 19:02:30 +0200
commite902baac656479bdb956224ed693578424cf9e96 (patch)
tree8abf80703f871c77850caf8fbdfd1b7f8acccc1a /fs/btrfs/xattr.c
parentbtrfs: get fs_info from eb in clean_tree_block (diff)
downloadkernel-qcow2-linux-e902baac656479bdb956224ed693578424cf9e96.tar.gz
kernel-qcow2-linux-e902baac656479bdb956224ed693578424cf9e96.tar.xz
kernel-qcow2-linux-e902baac656479bdb956224ed693578424cf9e96.zip
btrfs: get fs_info from eb in btrfs_leaf_free_space
We can read fs_info from extent buffer and can drop it from the parameters. Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/xattr.c')
-rw-r--r--fs/btrfs/xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/xattr.c b/fs/btrfs/xattr.c
index 69126d5b4d62..fa820c56ba3e 100644
--- a/fs/btrfs/xattr.c
+++ b/fs/btrfs/xattr.c
@@ -174,7 +174,7 @@ static int do_setxattr(struct btrfs_trans_handle *trans,
char *ptr;
if (size > old_data_len) {
- if (btrfs_leaf_free_space(fs_info, leaf) <
+ if (btrfs_leaf_free_space(leaf) <
(size - old_data_len)) {
ret = -ENOSPC;
goto out;