diff options
author | David Sterba <dsterba@suse.com> | 2019-03-20 14:51:10 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2019-04-29 19:02:50 +0200 |
commit | c71dd88007bdc8ba62e99439d93050b0778f101a (patch) | |
tree | d0b9ba2dfae830119a6a1ae8ad97691b2ddae78c /fs/btrfs/uuid-tree.c | |
parent | 78ac4f9e5ae022bd183ca21da7b373d300b7be17 (diff) | |
download | linux-stable-c71dd88007bdc8ba62e99439d93050b0778f101a.tar.gz linux-stable-c71dd88007bdc8ba62e99439d93050b0778f101a.tar.bz2 linux-stable-c71dd88007bdc8ba62e99439d93050b0778f101a.zip |
btrfs: remove unused parameter fs_info from btrfs_extend_item
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/uuid-tree.c')
-rw-r--r-- | fs/btrfs/uuid-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/uuid-tree.c b/fs/btrfs/uuid-tree.c index 44838ad3a7f9..91caab63bdf5 100644 --- a/fs/btrfs/uuid-tree.c +++ b/fs/btrfs/uuid-tree.c @@ -121,7 +121,7 @@ int btrfs_uuid_tree_add(struct btrfs_trans_handle *trans, u8 *uuid, u8 type, * An item with that type already exists. * Extend the item and store the new subid at the end. */ - btrfs_extend_item(fs_info, path, sizeof(subid_le)); + btrfs_extend_item(path, sizeof(subid_le)); eb = path->nodes[0]; slot = path->slots[0]; offset = btrfs_item_ptr_offset(eb, slot); |