Remove another bogus KASSERT(). Examination of mb_free_ext() shows

that RELENG_6 is not yet ready for this KASSERT.
This commit is contained in:
glebius 2006-01-22 13:16:13 +00:00
parent 8cb395de80
commit 8060d3cc2c

View File

@ -343,7 +343,6 @@ mb_dtor_pack(void *mem, int size, void *arg)
KASSERT(m->m_ext.ext_args == NULL, ("%s: ext_args != NULL", __func__));
KASSERT(m->m_ext.ext_size == MCLBYTES, ("%s: ext_size != MCLBYTES", __func__));
KASSERT(m->m_ext.ext_type == EXT_PACKET, ("%s: ext_type != EXT_PACKET", __func__));
KASSERT(m->m_ext.ref_cnt == NULL, ("%s: ref_cnt != NULL", __func__));
#ifdef INVARIANTS
trash_dtor(m->m_ext.ext_buf, MCLBYTES, arg);
#endif