Simplify keg_drain() a bit by using LIST_FOREACH_SAFE.

MFC after:	1 week
This commit is contained in:
Mark Johnston 2016-10-20 23:10:27 +00:00
parent 5c2ac5cf2a
commit 829be5168d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=307693

View File

@ -845,8 +845,7 @@ static void
keg_drain(uma_keg_t keg)
{
struct slabhead freeslabs = { 0 };
uma_slab_t slab;
uma_slab_t n;
uma_slab_t slab, tmp;
/*
* We don't want to take pages from statically allocated kegs at this
@ -862,15 +861,10 @@ keg_drain(uma_keg_t keg)
if (keg->uk_free == 0)
goto finished;
slab = LIST_FIRST(&keg->uk_free_slab);
while (slab) {
n = LIST_NEXT(slab, us_link);
/* We have no where to free these to */
if (slab->us_flags & UMA_SLAB_BOOT) {
slab = n;
LIST_FOREACH_SAFE(slab, &keg->uk_free_slab, us_link, tmp) {
/* We have nowhere to free these to. */
if (slab->us_flags & UMA_SLAB_BOOT)
continue;
}
LIST_REMOVE(slab, us_link);
keg->uk_pages -= keg->uk_ppera;
@ -880,8 +874,6 @@ keg_drain(uma_keg_t keg)
UMA_HASH_REMOVE(&keg->uk_hash, slab, slab->us_data);
SLIST_INSERT_HEAD(&freeslabs, slab, us_hlink);
slab = n;
}
finished:
KEG_UNLOCK(keg);