X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=kernel%2Fres_counter.c;h=ad581aa2369a2ed8f925c395b2b4eadd9d8640f2;hb=b532ff20bcf66536be05cc1d78311063b8bf1ee8;hp=bebe2b170d49ffd4c5b96590114f40d4d9fb69f9;hpb=a0f68763e1c7dd57fa2dae3c07bc50651e2eac29;p=mirror_ubuntu-bionic-kernel.git diff --git a/kernel/res_counter.c b/kernel/res_counter.c index bebe2b170d49..ad581aa2369a 100644 --- a/kernel/res_counter.c +++ b/kernel/res_counter.c @@ -94,13 +94,15 @@ void res_counter_uncharge_locked(struct res_counter *counter, unsigned long val) counter->usage -= val; } -void res_counter_uncharge(struct res_counter *counter, unsigned long val) +void res_counter_uncharge_until(struct res_counter *counter, + struct res_counter *top, + unsigned long val) { unsigned long flags; struct res_counter *c; local_irq_save(flags); - for (c = counter; c != NULL; c = c->parent) { + for (c = counter; c != top; c = c->parent) { spin_lock(&c->lock); res_counter_uncharge_locked(c, val); spin_unlock(&c->lock); @@ -108,6 +110,10 @@ void res_counter_uncharge(struct res_counter *counter, unsigned long val) local_irq_restore(flags); } +void res_counter_uncharge(struct res_counter *counter, unsigned long val) +{ + res_counter_uncharge_until(counter, NULL, val); +} static inline unsigned long long * res_counter_member(struct res_counter *counter, int member)