diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-06-09 19:40:34 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-06-09 19:40:34 +0000 |
| commit | 47f94c12dabcf5ca5511aa80affa8ffb49ef6a6b (patch) | |
| tree | b2425649da2d1176485e95c197de88fd269b0edf /sys | |
| parent | 5986c51cb77673479bfb34a80827eb5d41de2ffa (diff) | |
Notes
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/vm/uma_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index a27794beef7b..17bc03f8966e 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -1843,7 +1843,7 @@ uma_zfree_internal(uma_zone_t zone, void *item, void *udata, int skip) /* Do we need to remove from any lists? */ if (slab->us_freecount+1 == zone->uz_ipers) { - LIST_REMOVE(slab, us_link); + LIST_REMOVE(slab,us_link); LIST_INSERT_HEAD(&zone->uz_free_slab, slab, us_link); } else if (slab->us_freecount == 0) { LIST_REMOVE(slab, us_link); |
