cxgb: switch bare zone_mbuf use to m_free_raw

Sponsored by:	Rubicon Communications, LLC ("Netgate")
This commit is contained in:
Mateusz Guzik 2021-07-06 18:25:39 +02:00
parent d0732fa819
commit 2a69eb8c87

View File

@ -806,7 +806,7 @@ free_rx_bufs(adapter_t *sc, struct sge_fl *q)
uma_zfree(zone_pack, d->m);
} else {
m_init(d->m, M_NOWAIT, MT_DATA, 0);
uma_zfree(zone_mbuf, d->m);
m_free_raw(d->m);
uma_zfree(q->zone, d->rxsd_cl);
}
}