mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
btrfs: qgroup: Drop quota_root parameter from del_qgroup_item
It can be fetched from the transaction handle. Signed-off-by: Lu Fengqi <lufq.fnst@cn.fujitsu.com> Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
99d7f09ac0
commit
69104618f4
@ -653,10 +653,10 @@ out:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int del_qgroup_item(struct btrfs_trans_handle *trans,
|
||||
struct btrfs_root *quota_root, u64 qgroupid)
|
||||
static int del_qgroup_item(struct btrfs_trans_handle *trans, u64 qgroupid)
|
||||
{
|
||||
int ret;
|
||||
struct btrfs_root *quota_root = trans->fs_info->quota_root;
|
||||
struct btrfs_path *path;
|
||||
struct btrfs_key key;
|
||||
|
||||
@ -1420,7 +1420,7 @@ int btrfs_remove_qgroup(struct btrfs_trans_handle *trans,
|
||||
goto out;
|
||||
}
|
||||
}
|
||||
ret = del_qgroup_item(trans, quota_root, qgroupid);
|
||||
ret = del_qgroup_item(trans, qgroupid);
|
||||
if (ret && ret != -ENOENT)
|
||||
goto out;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user