DragonFly bugs List (threaded) for 2003-07
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]
Re: ipv6 zfreei reference
:you missed a reference to zfreei:
:./netinet6/in6_pcb.c:626: zfreei(ipi->ipi_zone, inp);
: > make
:
:linking kernel
:in6_pcb.o: In function `in6_pcbdetach':
:in6_pcb.o(.text+0x6a2): undefined reference to `zfreei'
Fixed. There is no zfreei any more, it's just zfree (and protected
by the MP lock for the moment, like the rest of 4.x).
-Matt
Matthew Dillon
<dillon@xxxxxxxxxxxxx>
Index: netinet6/in6_pcb.c
===================================================================
RCS file: /cvs/src/sys/netinet6/in6_pcb.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- netinet6/in6_pcb.c 25 Jun 2003 03:56:04 -0000 1.4
+++ netinet6/in6_pcb.c 20 Jul 2003 00:41:28 -0000 1.5
@@ -1,5 +1,5 @@
/* $FreeBSD: src/sys/netinet6/in6_pcb.c,v 1.10.2.9 2003/01/24 05:11:35 sam Exp $ */
-/* $DragonFly: src/sys/netinet6/in6_pcb.c,v 1.4 2003/06/25 03:56:04 dillon Exp $ */
+/* $DragonFly: src/sys/netinet6/in6_pcb.c,v 1.5 2003/07/20 00:41:28 dillon Exp $ */
/* $KAME: in6_pcb.c,v 1.31 2001/05/21 05:45:10 jinmei Exp $ */
/*
@@ -623,7 +623,7 @@
ip_freemoptions(inp->inp_moptions);
inp->inp_vflag = 0;
- zfreei(ipi->ipi_zone, inp);
+ zfree(ipi->ipi_zone, inp);
}
/*
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
[
Date Index][
Thread Index]