From owner-freebsd-net@FreeBSD.ORG Sat Mar 3 00:17:48 2012 Return-Path: Delivered-To: net@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6DE81106564A for ; Sat, 3 Mar 2012 00:17:48 +0000 (UTC) (envelope-from adrian.chadd@gmail.com) Received: from mail-wi0-f182.google.com (mail-wi0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id EB6878FC08 for ; Sat, 3 Mar 2012 00:17:47 +0000 (UTC) Received: by wibhn6 with SMTP id hn6so1210465wib.13 for ; Fri, 02 Mar 2012 16:17:47 -0800 (PST) Received-SPF: pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) client-ip=10.180.95.1; Authentication-Results: mr.google.com; spf=pass (google.com: domain of adrian.chadd@gmail.com designates 10.180.95.1 as permitted sender) smtp.mail=adrian.chadd@gmail.com; dkim=pass header.i=adrian.chadd@gmail.com Received: from mr.google.com ([10.180.95.1]) by 10.180.95.1 with SMTP id dg1mr769802wib.21.1330733867048 (num_hops = 1); Fri, 02 Mar 2012 16:17:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Rpzw/R0D+63VXEXmBAX98d5aD4BN+kBg1MpYpnaF1yg=; b=OZzF2Sh+Ux0HLngZ68dWRrFIMFEy/Ospmgxl//9n40IJqlUT7VwruuDtpnBlIHkKhU b2rYK39x1aEB346oWKRTlgST2VhiOBFYkwk9GCm+X9yop6FE0eHFz6JSFsEmjvFD5dhU gfW0HJnzoRLRnyvpKcxBAiDwfBv6rEmyGjRrQman74qZK6r1fOKVocSipmxyNvXa/K0G zL/TwdYBRgn/+kSUKheAtTeJmmaqONeOcs3foFeYhx9DPeng2ioVrNc+kkLtoVVy+ZIo oqixW778PbBJj4GOWeALQ9ypbEZMzt2r8+JDzEzCWc7eW+C5RKN4dpFOPlM2bqOmd4S3 mDZQ== MIME-Version: 1.0 Received: by 10.180.95.1 with SMTP id dg1mr588967wib.21.1330733866916; Fri, 02 Mar 2012 16:17:46 -0800 (PST) Sender: adrian.chadd@gmail.com Received: by 10.216.198.81 with HTTP; Fri, 2 Mar 2012 16:17:46 -0800 (PST) In-Reply-To: References: Date: Fri, 2 Mar 2012 16:17:46 -0800 X-Google-Sender-Auth: 3j5PX4RTKqpwPHzO3jeDWVy4Tbs Message-ID: From: Adrian Chadd To: Vijay Singh Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: net@freebsd.org Subject: Re: Patch to restore vnet at a couple of places X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2012 00:17:48 -0000 Is the same problem in -HEAD? Adrian On 2 March 2012 10:28, Vijay Singh wrote: > Patch is against 9-stable. > > [pc20 /u/vijay/bsd/CODE/9s/sys]# svn diff net/if_ethersubr.c > Index: net/if_ethersubr.c > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- net/if_ethersubr.c =A0(revision 232242) > +++ net/if_ethersubr.c =A0(working copy) > @@ -661,8 +661,10 @@ > =A0 =A0 =A0 =A0 =A0 =A0 =A0 m =3D (*lagg_input_p)(ifp, m); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 if (m !=3D NULL) > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 ifp =3D m->m_pkthdr.rcvif; > - =A0 =A0 =A0 =A0 =A0 =A0 =A0 else > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 else { > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 CURVNET_RESTORE(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return; > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 } > =A0 =A0 =A0 } > > =A0 =A0 =A0 /* > @@ -681,6 +683,7 @@ > =A0#endif > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 ifp->if_ierrors++; > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 m_freem(m); > + =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 CURVNET_RESTORE(); > =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 return; > =A0 =A0 =A0 =A0 =A0 =A0 =A0 } > > -vijay > _______________________________________________ > freebsd-net@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-net > To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org"