From 2a69eb8c878eb5c9a31c37fd08ea292f9a3a0a36 Mon Sep 17 00:00:00 2001 From: Mateusz Guzik Date: Tue, 6 Jul 2021 18:25:39 +0200 Subject: [PATCH] cxgb: switch bare zone_mbuf use to m_free_raw Sponsored by: Rubicon Communications, LLC ("Netgate") --- sys/dev/cxgb/cxgb_sge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/cxgb/cxgb_sge.c b/sys/dev/cxgb/cxgb_sge.c index 00b67880fcc8..0d415d94224f 100644 --- a/sys/dev/cxgb/cxgb_sge.c +++ b/sys/dev/cxgb/cxgb_sge.c @@ -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); } }