From owner-svn-src-all@FreeBSD.ORG Fri Dec 12 01:47:00 2008 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 49146106564A; Fri, 12 Dec 2008 01:47:00 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 38FA68FC16; Fri, 12 Dec 2008 01:47:00 +0000 (UTC) (envelope-from thompsa@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 mBC1l0bR082926; Fri, 12 Dec 2008 01:47:00 GMT (envelope-from thompsa@svn.freebsd.org) Received: (from thompsa@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBC1l0vg082925; Fri, 12 Dec 2008 01:47:00 GMT (envelope-from thompsa@svn.freebsd.org) Message-Id: <200812120147.mBC1l0vg082925@svn.freebsd.org> From: Andrew Thompson Date: Fri, 12 Dec 2008 01:47:00 +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: r185964 - head/sys/netinet6 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: Fri, 12 Dec 2008 01:47:00 -0000 Author: thompsa Date: Fri Dec 12 01:46:59 2008 New Revision: 185964 URL: http://svn.freebsd.org/changeset/base/185964 Log: Pass RTF_RNH_LOCKED to rtalloc1 sunce the node head is locked, this avoids a recursive lock panic on inet6 detach. Reviewed by: kmacy Modified: head/sys/netinet6/in6_ifattach.c Modified: head/sys/netinet6/in6_ifattach.c ============================================================================== --- head/sys/netinet6/in6_ifattach.c Fri Dec 12 01:36:50 2008 (r185963) +++ head/sys/netinet6/in6_ifattach.c Fri Dec 12 01:46:59 2008 (r185964) @@ -834,7 +834,7 @@ in6_ifdetach(struct ifnet *ifp) /* XXX grab lock first to avoid LOR */ if (V_rt_tables[0][AF_INET6] != NULL) { RADIX_NODE_HEAD_LOCK(V_rt_tables[0][AF_INET6]); - rt = rtalloc1((struct sockaddr *)&sin6, 0, 0UL); + rt = rtalloc1((struct sockaddr *)&sin6, RTF_RNH_LOCKED, 0UL); if (rt) { if (rt->rt_ifp == ifp) rtexpunge(rt);