cxgb: use m_gethdr_raw

Sponsored by:	Rubicon Communications, LLC ("Netgate")
This commit is contained in:
Mateusz Guzik 2021-07-07 09:38:23 +02:00
parent a56888534d
commit edcf1054d3

View File

@ -727,7 +727,7 @@ refill_fl(adapter_t *sc, struct sge_fl *q, int n)
} else {
if ((cl = m_cljget(NULL, M_NOWAIT, q->buf_size)) == NULL)
break;
if ((m = m_gethdr(M_NOWAIT, MT_NOINIT)) == NULL) {
if ((m = m_gethdr_raw(M_NOWAIT, 0)) == NULL) {
uma_zfree(q->zone, cl);
break;
}