From a3ea6d41b97bc23e762caea2704e5775db1675c6 Mon Sep 17 00:00:00 2001 From: Dag-Erling Smørgrav Date: Sun, 21 Jan 2001 22:23:11 +0000 Subject: First step towards an MP-safe zone allocator: - have zalloc() and zfree() always lock the vm_zone. - remove zalloci() and zfreei(), which are now redundant. Reviewed by: bmilekic, jasone --- sys/netinet6/in6_pcb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/netinet6') diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c index bc7b0cd8c3fe..67409bed1c2b 100644 --- a/sys/netinet6/in6_pcb.c +++ b/sys/netinet6/in6_pcb.c @@ -624,7 +624,7 @@ in6_pcbdetach(inp) ip_freemoptions(inp->inp_moptions); inp->inp_vflag = 0; - zfreei(ipi->ipi_zone, inp); + zfree(ipi->ipi_zone, inp); } /* -- cgit v1.3