MFC after:	3 days
This commit is contained in:
Mark Johnston 2018-05-06 00:11:30 +00:00
parent 681554d70b
commit c2ba2d1b0e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=333280

View File

@ -682,18 +682,18 @@ mb_free_ext(struct mbuf *m)
case EXT_MOD_TYPE:
case EXT_DISPOSABLE:
KASSERT(mref->m_ext.ext_free != NULL,
("%s: ext_free not set", __func__));
("%s: ext_free not set", __func__));
mref->m_ext.ext_free(mref);
uma_zfree(zone_mbuf, mref);
break;
case EXT_EXTREF:
KASSERT(m->m_ext.ext_free != NULL,
("%s: ext_free not set", __func__));
("%s: ext_free not set", __func__));
m->m_ext.ext_free(m);
break;
default:
KASSERT(m->m_ext.ext_type == 0,
("%s: unknown ext_type", __func__));
("%s: unknown ext_type", __func__));
}
}