From owner-freebsd-hackers@FreeBSD.ORG Tue Sep 25 17:54:52 2007 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1DD9B16A418; Tue, 25 Sep 2007 17:54:52 +0000 (UTC) (envelope-from kris@FreeBSD.org) Received: from weak.local (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx1.freebsd.org (Postfix) with ESMTP id 5C5CE13C457; Tue, 25 Sep 2007 17:54:51 +0000 (UTC) (envelope-from kris@FreeBSD.org) Message-ID: <46F94B6C.2090107@FreeBSD.org> Date: Tue, 25 Sep 2007 19:54:52 +0200 From: Kris Kennaway User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Ivan Voras References: <46F8D12E.7060202@FreeBSD.org> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-hackers@freebsd.org Subject: Re: Kernel panic on PowerEdge 1950 under certain stress load X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 25 Sep 2007 17:54:52 -0000 Ivan Voras wrote: > Kris Kennaway wrote: > >> Does it really? i.e. did you compare the function names in detail and >> find that they match precisely, or do you just mean "they are both >> panics of some description and I dunno what it all means"? :) I ask >> because the linked trace does not involve a spinlock, which means it >> cannot be precisely the same trace. > > Isn't spinning and waiting "adaptive"? (AFAIK some locks spin for a > short while before they wait). At least, that's why I thought they might > be the same problem. Not in the sense of transmuting a sleep mutex into a spin mutex, no. sleep mutexes will spin when the lock holder is currently running, but this happens within the context of the mtx_lock_sleep function itself. Kris