From owner-svn-src-all@FreeBSD.ORG Tue Jun 9 09:50:44 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33096106566B; Tue, 9 Jun 2009 09:50:44 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 219378FC27; Tue, 9 Jun 2009 09:50:44 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n599oipD063583; Tue, 9 Jun 2009 09:50:44 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n599oiX2063582; Tue, 9 Jun 2009 09:50:44 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <200906090950.n599oiX2063582@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Tue, 9 Jun 2009 09:50:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r193820 - head/sys/net X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 09 Jun 2009 09:50:44 -0000 Author: bz Date: Tue Jun 9 09:50:43 2009 New Revision: 193820 URL: http://svn.freebsd.org/changeset/base/193820 Log: Remove one INET dependency by calling the general AF agnostic version for doing the routing lookup. Reviewed by: kmacy Modified: head/sys/net/flowtable.c Modified: head/sys/net/flowtable.c ============================================================================== --- head/sys/net/flowtable.c Tue Jun 9 09:47:02 2009 (r193819) +++ head/sys/net/flowtable.c Tue Jun 9 09:50:43 2009 (r193820) @@ -407,7 +407,7 @@ static void in_rtalloc_ign_wrapper(struct route *ro, uint32_t hash, u_int fib) { - in_rtalloc_ign(ro, 0, fib); + rtalloc_ign_fib(ro, 0, fib); } #endif