From owner-svn-src-all@FreeBSD.ORG Tue Dec 16 01:58:31 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 47F42106564A; Tue, 16 Dec 2008 01:58:31 +0000 (UTC) (envelope-from kmacy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 33F838FC08; Tue, 16 Dec 2008 01:58:31 +0000 (UTC) (envelope-from kmacy@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 mBG1wVh5023071; Tue, 16 Dec 2008 01:58:31 GMT (envelope-from kmacy@svn.freebsd.org) Received: (from kmacy@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBG1wVM3023070; Tue, 16 Dec 2008 01:58:31 GMT (envelope-from kmacy@svn.freebsd.org) Message-Id: <200812160158.mBG1wVM3023070@svn.freebsd.org> From: Kip Macy Date: Tue, 16 Dec 2008 01:58:31 +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: r186155 - 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: Tue, 16 Dec 2008 01:58:31 -0000 Author: kmacy Date: Tue Dec 16 01:58:30 2008 New Revision: 186155 URL: http://svn.freebsd.org/changeset/base/186155 Log: unlock the llentry after use in find_pfxlist_reachable_router Modified: head/sys/netinet6/nd6_rtr.c Modified: head/sys/netinet6/nd6_rtr.c ============================================================================== --- head/sys/netinet6/nd6_rtr.c Tue Dec 16 01:24:05 2008 (r186154) +++ head/sys/netinet6/nd6_rtr.c Tue Dec 16 01:58:30 2008 (r186155) @@ -1336,9 +1336,10 @@ find_pfxlist_reachable_router(struct nd_ if ((ln = nd6_lookup(&pfxrtr->router->rtaddr, 0, pfxrtr->router->ifp)) && ND6_IS_LLINFO_PROBREACH(ln)) { - IF_AFDATA_UNLOCK(pfxrtr->router->ifp); + LLE_RUNLOCK(ln); break; /* found */ } + LLE_RUNLOCK(ln); IF_AFDATA_UNLOCK(pfxrtr->router->ifp); } return (pfxrtr);