diff options
author | andre <andre@FreeBSD.org> | 2005-11-05 19:43:55 +0000 |
---|---|---|
committer | andre <andre@FreeBSD.org> | 2005-11-05 19:43:55 +0000 |
commit | 07bbeaa7561d8f472f27f07c34bdb81d141cd448 (patch) | |
tree | e16b6429310ae66ea56b3c0ac095805aea0d4c1c /sys/kern/uipc_mbuf.c | |
parent | c5417f9f3340f25c97b883a189476208962e9b7a (diff) | |
download | FreeBSD-src-07bbeaa7561d8f472f27f07c34bdb81d141cd448.zip FreeBSD-src-07bbeaa7561d8f472f27f07c34bdb81d141cd448.tar.gz |
Free only those mbuf+clusters back to the packet zone that were allocated
from there. All others get broken up and free'd individually to the mbuf
and cluster zones.
The packet zone is a secondary zone to the mbuf zone. There is currently
a limitation in UMA which prevents decreasing the packet zone stock when
the mbuf and cluster zone are drained and all their members are part of
packets. When this is fixed this change may be reverted.
Diffstat (limited to 'sys/kern/uipc_mbuf.c')
-rw-r--r-- | sys/kern/uipc_mbuf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/uipc_mbuf.c b/sys/kern/uipc_mbuf.c index 4e0f2d9..e4b5483 100644 --- a/sys/kern/uipc_mbuf.c +++ b/sys/kern/uipc_mbuf.c @@ -217,11 +217,13 @@ mb_free_ext(struct mbuf *m) if (*(m->m_ext.ref_cnt) == 1 || atomic_fetchadd_int(m->m_ext.ref_cnt, -1) == 0) { switch (m->m_ext.ext_type) { - case EXT_CLUSTER: /* The packet zone is special. */ + case EXT_PACKET: /* The packet zone is special. */ if (*(m->m_ext.ref_cnt) == 0) *(m->m_ext.ref_cnt) = 1; uma_zfree(zone_pack, m); return; /* Job done. */ + case EXT_CLUSTER: + uma_zfree(zone_clust, m->m_ext.ext_buf); break; case EXT_JUMBO9: uma_zfree(zone_jumbo9, m->m_ext.ext_buf); |