Date: Tue, 9 Dec 2003 10:23:43 -0800 (PST) From: Sam Leffler <sam@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 43686 for review Message-ID: <200312091823.hB9INh9p013612@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=43686 Change 43686 by sam@sam_ebb on 2003/12/09 10:23:41 IFC Affected files ... .. //depot/projects/netperf+sockets/sys/netatalk/ddp_usrreq.c#3 edit Differences ... ==== //depot/projects/netperf+sockets/sys/netatalk/ddp_usrreq.c#3 (text+ko) ==== @@ -2,7 +2,7 @@ * Copyright (c) 1990,1994 Regents of The University of Michigan. * All Rights Reserved. See COPYRIGHT. * - * $FreeBSD: src/sys/netatalk/ddp_usrreq.c,v 1.30 2003/03/04 23:19:51 jlemon Exp $ + * $FreeBSD: src/sys/netatalk/ddp_usrreq.c,v 1.33 2003/11/18 00:39:03 rwatson Exp $ */ #include <sys/param.h> @@ -459,7 +459,7 @@ } if ( ddp->ddp_route.ro_rt ) { - rtfree( ddp->ddp_route.ro_rt ); + RTFREE( ddp->ddp_route.ro_rt ); } if ( ddp->ddp_prev ) { @@ -553,9 +553,9 @@ mtx_init(&atintrq1.ifq_mtx, "at1_inq", NULL, MTX_DEF); mtx_init(&atintrq2.ifq_mtx, "at2_inq", NULL, MTX_DEF); mtx_init(&aarpintrq.ifq_mtx, "aarp_inq", NULL, MTX_DEF); - netisr_register(NETISR_ATALK1, at1intr, &atintrq1); - netisr_register(NETISR_ATALK2, at2intr, &atintrq2); - netisr_register(NETISR_AARP, aarpintr, &aarpintrq); + netisr_register(NETISR_ATALK1, at1intr, &atintrq1, 0); + netisr_register(NETISR_ATALK2, at2intr, &atintrq2, 0); + netisr_register(NETISR_AARP, aarpintr, &aarpintrq, 0); } #if 0 @@ -590,5 +590,6 @@ at_setsockaddr, sosend, soreceive, - sopoll + sopoll, + pru_sosetlabel_null };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200312091823.hB9INh9p013612>