Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 04 Aug 2003 16:36:53 -0400 (EDT)
From:      John Baldwin <jhb@FreeBSD.org>
To:        Holger Kipp <holger.kipp@alogis.com>, alc@FreeBSD.org
Cc:        current <current@freebsd.org>
Subject:   RE: mtx_lock() of spin mutex (null)
Message-ID:  <XFMail.20030804163653.jhb@FreeBSD.org>
In-Reply-To: <3F2E0619.D92919E6@alogis.com>

next in thread | previous in thread | raw e-mail | index | archive | help

On 04-Aug-2003 Holger Kipp wrote:
> Got the following panic on a completely idle -CURRENT from July 26th:
> so this was presumably caused by the daily or weekly jobs.
> 
> panic: mtx_lock() of spin mutex (null) @ /usr/src/sys/kern/vfs_subr.c:1186
> Debugger("panic")
> stopped at       Debugger +0x54:  xchgl  %ebx,in_Debugger.0
> db>

                if (VOP_GETVOBJECT(vp, &object) == 0) {
                        VM_OBJECT_LOCK(object);
                        vm_object_pip_wait(object, "vnvlbx");
                        VM_OBJECT_UNLOCK(object);
                }

That line is the VM_OBJECT_LOCK().  It looks like the mutex hasn't
been initialized and is just all zeros.

-- 

John Baldwin <jhb@FreeBSD.org>  <><  http://www.FreeBSD.org/~jhb/
"Power Users Use the Power to Serve!"  -  http://www.FreeBSD.org/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?XFMail.20030804163653.jhb>