mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-16 21:35:07 +00:00
Btrfs: return as soon as possible when edquot happens
If one of qgroup fails to reserve firstly, we should return immediately, it is unnecessary to continue check. Signed-off-by: Wang Shilong <wangsl-fnst@cn.fujitsu.com> Signed-off-by: Josef Bacik <jbacik@fusionio.com> Signed-off-by: Chris Mason <chris.mason@fusionio.com>
This commit is contained in:
parent
492104c866
commit
720f1e2060
@ -1525,21 +1525,23 @@ int btrfs_qgroup_reserve(struct btrfs_root *root, u64 num_bytes)
|
|||||||
|
|
||||||
if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
|
if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_RFER) &&
|
||||||
qg->reserved + qg->rfer + num_bytes >
|
qg->reserved + qg->rfer + num_bytes >
|
||||||
qg->max_rfer)
|
qg->max_rfer) {
|
||||||
ret = -EDQUOT;
|
ret = -EDQUOT;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
|
if ((qg->lim_flags & BTRFS_QGROUP_LIMIT_MAX_EXCL) &&
|
||||||
qg->reserved + qg->excl + num_bytes >
|
qg->reserved + qg->excl + num_bytes >
|
||||||
qg->max_excl)
|
qg->max_excl) {
|
||||||
ret = -EDQUOT;
|
ret = -EDQUOT;
|
||||||
|
goto out;
|
||||||
|
}
|
||||||
|
|
||||||
list_for_each_entry(glist, &qg->groups, next_group) {
|
list_for_each_entry(glist, &qg->groups, next_group) {
|
||||||
ulist_add(ulist, glist->group->qgroupid,
|
ulist_add(ulist, glist->group->qgroupid,
|
||||||
(uintptr_t)glist->group, GFP_ATOMIC);
|
(uintptr_t)glist->group, GFP_ATOMIC);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (ret)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* no limits exceeded, now record the reservation into all qgroups
|
* no limits exceeded, now record the reservation into all qgroups
|
||||||
|
Loading…
x
Reference in New Issue
Block a user