Fix incorrect KASSERTs in xlpge

Fix for crash in Netlogic XLP network accelerator driver when invariants
are enabled - use correct the condition for KASSERT.
This commit is contained in:
Jayachandran C. 2013-04-12 16:03:22 +00:00
parent 15f9c9ed69
commit d1a51785b3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249409

View File

@ -975,7 +975,7 @@ nlm_mii_pollstat(void *arg)
if (sc->mii_bus) {
mii = device_get_softc(sc->mii_bus);
KASSERT(mii == NULL, ("mii ptr is NULL"));
KASSERT(mii != NULL, ("mii ptr is NULL"));
mii_pollstat(mii);
@ -1143,7 +1143,7 @@ get_buf(void)
#ifdef INVARIANTS
temp1 = vtophys((vm_offset_t) m_new->m_data);
temp2 = vtophys((vm_offset_t) m_new->m_data + 1536);
KASSERT((temp1 + 1536) != temp2,
KASSERT((temp1 + 1536) == temp2,
("Alloced buffer is not contiguous"));
#endif
return ((void *)m_new->m_data);