diff options
| author | Jeff Roberson <jeff@FreeBSD.org> | 2002-03-20 08:03:54 +0000 |
|---|---|---|
| committer | Jeff Roberson <jeff@FreeBSD.org> | 2002-03-20 08:03:54 +0000 |
| commit | 94540027116a03d17bb79bfbe8b5411dd705ee23 (patch) | |
| tree | f4c52741b6c3ac4ffb28c1f8419ce4d13e56dd18 | |
| parent | 03d1b8bc94b068f7f633f26e912e9fbbe3f31687 (diff) | |
Notes
| -rw-r--r-- | sys/netinet6/in6_pcb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/in6_pcb.c b/sys/netinet6/in6_pcb.c index a9e365a77c7a2..093fe71acbda1 100644 --- a/sys/netinet6/in6_pcb.c +++ b/sys/netinet6/in6_pcb.c @@ -84,7 +84,7 @@ #include <sys/proc.h> #include <sys/jail.h> -#include <vm/vm_zone.h> +#include <vm/uma.h> #include <net/if.h> #include <net/if_types.h> @@ -620,7 +620,7 @@ in6_pcbdetach(inp) ip_freemoptions(inp->inp_moptions); inp->inp_vflag = 0; - zfree(ipi->ipi_zone, inp); + uma_zfree(ipi->ipi_zone, inp); } /* |
