diff options
author | Nikolay Borisov <nborisov@suse.com> | 2018-02-07 16:55:49 +0100 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2018-03-26 15:09:32 +0200 |
commit | e9b919b1f73f1a363988ae1b9fba66f83a221f2e (patch) | |
tree | 49114c675e417cdf53e6a03ea7b957542e9ca88a /fs/btrfs/volumes.h | |
parent | btrfs: Remove fs_info argument from create_pending_snapshots/create_pending_s... (diff) | |
download | linux-e9b919b1f73f1a363988ae1b9fba66f83a221f2e.tar.xz linux-e9b919b1f73f1a363988ae1b9fba66f83a221f2e.zip |
btrfs: Remove fs_info argument from btrfs_update_commit_device_bytes_used
We already pass the btrfs_transaction which references fs_info so no
need to pass the later as an argument. Also use the opportunity to
shorten transaction->trans. No functional changes.
Signed-off-by: Nikolay Borisov <nborisov@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to '')
-rw-r--r-- | fs/btrfs/volumes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 2a171f9b2c04..654df38faa7a 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -545,8 +545,7 @@ static inline void btrfs_dev_stat_reset(struct btrfs_device *dev, } void btrfs_update_commit_device_size(struct btrfs_fs_info *fs_info); -void btrfs_update_commit_device_bytes_used(struct btrfs_fs_info *fs_info, - struct btrfs_transaction *transaction); +void btrfs_update_commit_device_bytes_used(struct btrfs_transaction *trans); struct list_head *btrfs_get_fs_uuids(void); void btrfs_set_fs_info_ptr(struct btrfs_fs_info *fs_info); |