From owner-svn-src-stable-8@FreeBSD.ORG Mon Aug 31 10:17:36 2009 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8F31D1065670; Mon, 31 Aug 2009 10:17:36 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [65.122.17.42]) by mx1.freebsd.org (Postfix) with ESMTP id 677808FC1D; Mon, 31 Aug 2009 10:17:36 +0000 (UTC) Received: from fledge.watson.org (fledge.watson.org [65.122.17.41]) by cyrus.watson.org (Postfix) with ESMTPS id 1569546B2D; Mon, 31 Aug 2009 06:17:36 -0400 (EDT) Date: Mon, 31 Aug 2009 11:17:35 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Qing Li In-Reply-To: <200908310018.n7V0IIC1010643@svn.freebsd.org> Message-ID: References: <200908310018.n7V0IIC1010643@svn.freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: svn-src-stable@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org, svn-src-stable-8@freebsd.org Subject: Re: svn commit: r196679 - in stable/8/sys: . amd64/include/xen cddl/contrib/opensolaris contrib/dev/acpica contrib/pf dev/xen/xenpci net X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 31 Aug 2009 10:17:36 -0000 University of Cambridge On Mon, 31 Aug 2009, Qing Li wrote: > As part of r196609, a call to "rtalloc" did not take the fib into > account. So call the appropriate "rtalloc_ign_fib()" instead of > calling "rtalloc_ign()". > > Reviewed by: pointed out by bz > Approved by: re I don't have this in my list of re-approved merges. Are you sure this change was approved by re? Robert N M Watson Computer Laboratory University of Cambridge > > Modified: > stable/8/sys/ (props changed) > stable/8/sys/amd64/include/xen/ (props changed) > stable/8/sys/cddl/contrib/opensolaris/ (props changed) > stable/8/sys/contrib/dev/acpica/ (props changed) > stable/8/sys/contrib/pf/ (props changed) > stable/8/sys/dev/xen/xenpci/ (props changed) > stable/8/sys/net/rtsock.c > > Modified: stable/8/sys/net/rtsock.c > ============================================================================== > --- stable/8/sys/net/rtsock.c Mon Aug 31 00:14:37 2009 (r196678) > +++ stable/8/sys/net/rtsock.c Mon Aug 31 00:18:17 2009 (r196679) > @@ -527,7 +527,7 @@ route_output(struct mbuf *m, struct sock > > bzero(&gw_ro, sizeof(gw_ro)); > gw_ro.ro_dst = *info.rti_info[RTAX_GATEWAY]; > - rtalloc_ign(&gw_ro, 0); > + rtalloc_ign_fib(&gw_ro, 0, so->so_fibnum); > /* > * A host route through the loopback interface is > * installed for each interface adddress. In pre 8.0 >