From owner-freebsd-current@FreeBSD.ORG Thu Sep 2 12:58:57 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10C5F16A4CE; Thu, 2 Sep 2004 12:58:57 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FA1643D1F; Thu, 2 Sep 2004 12:58:56 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i82CuHr7047380; Thu, 2 Sep 2004 08:56:18 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i82CuH5B047377; Thu, 2 Sep 2004 08:56:17 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 2 Sep 2004 08:56:17 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Patrick Guelat In-Reply-To: <20040902081926.J48093@murphy.imp.ch> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-current@freebsd.org Subject: Re: Panic in propagate_priority() [5.3-BETA2] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Sep 2004 12:58:57 -0000 On Thu, 2 Sep 2004, Patrick Guelat wrote: > exclusive sleep mutex rip r=1 (0xc079e70c) locked @ /usr/src53/sys/netinet6/raw_ip.c:255 Ah, indeed, there's an incorrect "lock" instead of "unlock" there. Could you try the attached patch: Index: raw_ip6.c =================================================================== RCS file: /data/fbsd-cvs/ncvs/src/sys/netinet6/raw_ip6.c,v retrieving revision 1.45 diff -u -r1.45 raw_ip6.c --- raw_ip6.c 12 Aug 2004 18:31:36 -0000 1.45 +++ raw_ip6.c 2 Sep 2004 12:55:19 -0000 @@ -252,7 +252,7 @@ } ip6stat.ip6s_delivered--; } - INP_INFO_RLOCK(&ripcbinfo); + INP_INFO_RUNLOCK(&ripcbinfo); return IPPROTO_DONE; }