Commit 39616c27 authored by Lu Fengqi's avatar Lu Fengqi Committed by David Sterba

btrfs: qgroup: Drop fs_info parameter from btrfs_del_qgroup_relation

It can be fetched from the transaction handle.
Signed-off-by: default avatarLu Fengqi <lufq.fnst@cn.fujitsu.com>
Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent 6b36f1aa
...@@ -5173,8 +5173,7 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg) ...@@ -5173,8 +5173,7 @@ static long btrfs_ioctl_qgroup_assign(struct file *file, void __user *arg)
if (sa->assign) { if (sa->assign) {
ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst); ret = btrfs_add_qgroup_relation(trans, sa->src, sa->dst);
} else { } else {
ret = btrfs_del_qgroup_relation(trans, fs_info, ret = btrfs_del_qgroup_relation(trans, sa->src, sa->dst);
sa->src, sa->dst);
} }
/* update qgroup status and info */ /* update qgroup status and info */
......
...@@ -1351,9 +1351,10 @@ static int __del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src, ...@@ -1351,9 +1351,10 @@ static int __del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
return ret; return ret;
} }
int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
struct btrfs_fs_info *fs_info, u64 src, u64 dst) u64 dst)
{ {
struct btrfs_fs_info *fs_info = trans->fs_info;
int ret = 0; int ret = 0;
mutex_lock(&fs_info->qgroup_ioctl_lock); mutex_lock(&fs_info->qgroup_ioctl_lock);
......
...@@ -149,8 +149,8 @@ int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info, ...@@ -149,8 +149,8 @@ int btrfs_qgroup_wait_for_completion(struct btrfs_fs_info *fs_info,
bool interruptible); bool interruptible);
int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src, int btrfs_add_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
u64 dst); u64 dst);
int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, int btrfs_del_qgroup_relation(struct btrfs_trans_handle *trans, u64 src,
struct btrfs_fs_info *fs_info, u64 src, u64 dst); u64 dst);
int btrfs_create_qgroup(struct btrfs_trans_handle *trans, int btrfs_create_qgroup(struct btrfs_trans_handle *trans,
struct btrfs_fs_info *fs_info, u64 qgroupid); struct btrfs_fs_info *fs_info, u64 qgroupid);
int btrfs_remove_qgroup(struct btrfs_trans_handle *trans, int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment