The branch stable/13 has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=8413d2a786655005140c75060b7cba321079a5dd
commit 8413d2a786655005140c75060b7cba321079a5dd Author: Mateusz Guzik <[email protected]> AuthorDate: 2021-06-30 13:02:45 +0000 Commit: Mateusz Guzik <[email protected]> CommitDate: 2021-07-05 12:05:01 +0000 ktls: switch bare zone_mbuf use to m_free_raw Reviewed by: gallatin Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D30955 (cherry picked from commit 904a08f3427c8ae42b667c1f5dc3e441b48a8e84) --- sys/kern/uipc_ktls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/uipc_ktls.c b/sys/kern/uipc_ktls.c index a648d37cd60f..0f5cc7c1b28f 100644 --- a/sys/kern/uipc_ktls.c +++ b/sys/kern/uipc_ktls.c @@ -2140,7 +2140,7 @@ ktls_work_thread(void *ctx) STAILQ_FOREACH_SAFE(m, &local_m_head, m_epg_stailq, n) { if (m->m_epg_flags & EPG_FLAG_2FREE) { ktls_free(m->m_epg_tls); - uma_zfree(zone_mbuf, m); + m_free_raw(m); } else { ktls_encrypt(m); counter_u64_add(ktls_cnt_tx_queued, -1); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "[email protected]"
