Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5495f195 authored by Nikolay Borisov's avatar Nikolay Borisov Committed by David Sterba
Browse files

btrfs: remove fs_info argument from update_dev_stat_item



It can be referenced from the passed transaction handle.

Signed-off-by: default avatarNikolay Borisov <nborisov@suse.com>
Reviewed-by: default avatarLu Fengqi <lufq.fnst@cn.fujitsu.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 68a9db5f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -7043,9 +7043,9 @@ int btrfs_init_dev_stats(struct btrfs_fs_info *fs_info)
}

static int update_dev_stat_item(struct btrfs_trans_handle *trans,
				struct btrfs_fs_info *fs_info,
				struct btrfs_device *device)
{
	struct btrfs_fs_info *fs_info = trans->fs_info;
	struct btrfs_root *dev_root = fs_info->dev_root;
	struct btrfs_path *path;
	struct btrfs_key key;
@@ -7138,7 +7138,7 @@ int btrfs_run_dev_stats(struct btrfs_trans_handle *trans,
		 */
		smp_rmb();

		ret = update_dev_stat_item(trans, fs_info, device);
		ret = update_dev_stat_item(trans, device);
		if (!ret)
			atomic_sub(stats_cnt, &device->dev_stats_ccnt);
	}