From owner-freebsd-current@FreeBSD.ORG Tue Jul 22 17:15:20 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3E809106564A; Tue, 22 Jul 2008 17:15:20 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.freebsd.org (Postfix) with ESMTP id 069F78FC22; Tue, 22 Jul 2008 17:15:19 +0000 (UTC) (envelope-from gallatin@cs.duke.edu) Received: from [172.31.193.10] (cpe-075-177-134-250.nc.res.rr.com [75.177.134.250]) (authenticated bits=0) by duke.cs.duke.edu (8.14.2/8.14.2) with ESMTP id m6MHFIBR019092 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 22 Jul 2008 13:15:18 -0400 (EDT) X-DKIM: Sendmail DKIM Filter v2.5.3 duke.cs.duke.edu m6MHFIBR019092 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=cs.duke.edu; s=mail; t=1216746918; bh=MIF3XvuZXzL9d9npbpqIrV7vShO2AEsd4ebx5qAwQ6s=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=I/c48NUUJ9/J HqVsdOeouIo+f7pHW6VP38jDN3MRjN8pn09UoA+osjopXCRXNGJNdI+xUqCrUY9FFev 5nh5kDS/D1S9dMnHfWzkB/SmmLeaTknGsRtx/8HY4+Ybln3/0pVHHaItYpcgI51c3WL 1hT5Xn+HrftMae146bk0gcBFU= Message-ID: <488615A0.7030106@cs.duke.edu> Date: Tue, 22 Jul 2008 13:15:12 -0400 From: Andrew Gallatin User-Agent: Thunderbird 2.0.0.14 (X11/20080505) MIME-Version: 1.0 To: Kostik Belousov References: <4884F992.7090008@cs.duke.edu> <20080722154825.GZ17123@deviant.kiev.zoral.com.ua> In-Reply-To: <20080722154825.GZ17123@deviant.kiev.zoral.com.ua> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: attilio@freebsd.org, freebsd-current@freebsd.org Subject: Re: reproducible "panic: share->excl" X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Tue, 22 Jul 2008 17:15:20 -0000 Kostik Belousov wrote: > Essentially, you tried to do the write of the part of the region mmaped > from the file, to the file. The VOP_WRITE() is called with exclusively > locked vnode, while fault handler tried to lock the vnode in shared mode > to page in. Yes, the operations attempted were rather nonsensical, but should not have killed the system. Thank you for looking into it. Drew