aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
diff options
context:
space:
mode:
authorBosko Milekic <bmilekic@FreeBSD.org>2004-06-09 19:18:50 +0000
committerBosko Milekic <bmilekic@FreeBSD.org>2004-06-09 19:18:50 +0000
commite66468ea7a1857b7a286dcea03d7ef5e81283951 (patch)
tree2642e88b94f9d20c2a13881194c2d583ae3106ea /sys/vm
parentdaac3fffc8603bd4500581c0d1c98bad56196949 (diff)
downloadsrc-e66468ea7a1857b7a286dcea03d7ef5e81283951.tar.gz
src-e66468ea7a1857b7a286dcea03d7ef5e81283951.zip
Make the slabrefzone, the zone from which we allocated slabs with
internal reference counters, UMA_ZONE_NOFREE. This way, those slabs (with their ref counts) will be effectively type-stable, then using a trick like this on the refcount is no longer dangerous: MEXT_REM_REF(m); if (atomic_cmpset_int(m->m_ext.ref_cnt, 0, 1)) { if (m->m_ext.ext_type == EXT_PACKET) { uma_zfree(zone_pack, m); return; } else if (m->m_ext.ext_type == EXT_CLUSTER) { uma_zfree(zone_clust, m->m_ext.ext_buf); m->m_ext.ext_buf = NULL; } else { (*(m->m_ext.ext_free))(m->m_ext.ext_buf, m->m_ext.ext_args); if (m->m_ext.ext_type != EXT_EXTREF) free(m->m_ext.ref_cnt, M_MBUF); } } uma_zfree(zone_mbuf, m); Previously, a second thread hitting the above cmpset might actually read the refcnt AFTER it has already been freed. A very rare occurance. Now we'll know that it won't be freed, though. Spotted by: julian, pjd
Notes
Notes: svn path=/head/; revision=130278
Diffstat (limited to 'sys/vm')
-rw-r--r--sys/vm/uma_core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c
index 82d60c6daa10..687886d16cda 100644
--- a/sys/vm/uma_core.c
+++ b/sys/vm/uma_core.c
@@ -1473,7 +1473,8 @@ uma_startup(void *bootmem)
slabrefzone = uma_zcreate("UMA RCntSlabs",
slabsize,
NULL, NULL, NULL, NULL,
- UMA_ALIGN_PTR, UMA_ZFLAG_INTERNAL);
+ UMA_ALIGN_PTR,
+ UMA_ZFLAG_INTERNAL|UMA_ZONE_NOFREE);
hashzone = uma_zcreate("UMA Hash",
sizeof(struct slabhead *) * UMA_HASH_SIZE_INIT,