The branch main has been updated by mjg: URL: https://cgit.FreeBSD.org/src/commit/?id=904a08f3427c8ae42b667c1f5dc3e441b48a8e84
commit 904a08f3427c8ae42b667c1f5dc3e441b48a8e84 Author: Mateusz Guzik <[email protected]> AuthorDate: 2021-06-30 13:02:45 +0000 Commit: Mateusz Guzik <[email protected]> CommitDate: 2021-07-02 08:30:22 +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 --- 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 8eb52cd02afe..7e87e7c740e3 100644 --- a/sys/kern/uipc_ktls.c +++ b/sys/kern/uipc_ktls.c @@ -2174,7 +2174,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(wq, m); counter_u64_add(ktls_cnt_tx_queued, -1); _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main To unsubscribe, send any mail to "[email protected]"
