mirror of
https://github.com/torvalds/linux.git
synced 2026-06-03 20:14:06 +02:00
btrfs: use GFP_KERNEL in btrfs_quota_enable
We don't need to use GFP_NOFS here as this is called from ioctls an the only lock held is the subvol_sem, which is of a high level and protects creation/renames/deletion and is never held in the writeout paths. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
323b88f4ab
commit
52bf8e7aea
|
|
@ -876,7 +876,7 @@ int btrfs_quota_enable(struct btrfs_trans_handle *trans,
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
fs_info->qgroup_ulist = ulist_alloc(GFP_NOFS);
|
fs_info->qgroup_ulist = ulist_alloc(GFP_KERNEL);
|
||||||
if (!fs_info->qgroup_ulist) {
|
if (!fs_info->qgroup_ulist) {
|
||||||
ret = -ENOMEM;
|
ret = -ENOMEM;
|
||||||
goto out;
|
goto out;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user