The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=b6cbbcae40b49acdc6d1d368fc365c7a55c378b1
commit b6cbbcae40b49acdc6d1d368fc365c7a55c378b1 Author: Kristof Provost <[email protected]> AuthorDate: 2021-11-16 19:47:37 +0000 Commit: Kristof Provost <[email protected]> CommitDate: 2021-11-17 02:09:20 +0000 m_get3(): actually use the selected zone Reported by: markj --- sys/kern/kern_mbuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_mbuf.c b/sys/kern/kern_mbuf.c index af00bf8182ac..88a3e84c558d 100644 --- a/sys/kern/kern_mbuf.c +++ b/sys/kern/kern_mbuf.c @@ -1428,7 +1428,7 @@ m_get3(int size, int how, short type, int flags) else zone = zone_jumbo16; - n = uma_zalloc_arg(zone_jumbop, m, how); + n = uma_zalloc_arg(zone, m, how); if (n == NULL) { m_free_raw(m); return (NULL);
