From owner-freebsd-current Mon May 4 10:07:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06991 for freebsd-current-outgoing; Mon, 4 May 1998 10:07:51 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from mhub2.tc.umn.edu (0@mhub2.tc.umn.edu [128.101.131.52]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA06980; Mon, 4 May 1998 10:07:44 -0700 (PDT) (envelope-from adkin003@tc.umn.edu) Received: from gold.tc.umn.edu by mhub2.tc.umn.edu; Mon, 4 May 98 12:07:39 -0500 Received: from pub-24-a-142.dialup.umn.edu by gold.tc.umn.edu; Mon, 4 May 98 12:07:38 -0500 Date: Mon, 4 May 1998 12:07:33 -0500 (CDT) From: dave adkins To: "John S. Dyson" cc: David A Adkins , freebsd-current@FreeBSD.ORG Subject: Re: cvs commit: src/sys/kern sysv_shm.c src/sys/vm swap_pager.c vm_fault.c vm_map.c In-Reply-To: <199805041640.LAA02356@dyson.iquest.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Mon, 4 May 1998, John S. Dyson wrote: > What you are seeing is a "DIAGNOSTIC" panic that really isn't > indicating a problem. I am reworking the issue, but for now, just > disable diagnostic. I'll be committing a fix in an hour. > John, It panics without the DIAGNOSTIC message at the line: if ((robject->handle == NULL) && (robject->type == OBJT_DEFAULT || robject->type == OBJT_SWAP)) { trying to derefence robject->handle. I put in an additional test to prevent the dereference through NULL: if ( robject && (robject->handle == NULL) && (robject->type == OBJT_DEFAULT || robject->type == OBJT_SWAP)) { and have been running with it for a few hours. I know its not a real fix, just a little more info on where I'm failing. dave adkins To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message