From owner-freebsd-questions Mon Dec 18 11:48:39 1995 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA15324 for questions-outgoing; Mon, 18 Dec 1995 11:48:39 -0800 (PST) Received: from localhost.cdrom.com (localhost.cdrom.com [127.0.0.1]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id LAA15318 Mon, 18 Dec 1995 11:48:36 -0800 (PST) Message-Id: <199512181948.LAA15318@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: Host localhost.cdrom.com [127.0.0.1] didn't use HELO protocol cc: Martin Sapsed , freebsd-questions@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: Problem with FreeBSD 2.1.0-RELEASE In-reply-to: Your message of "Mon, 18 Dec 1995 11:30:36 PST." <199512181930.LAA14250@freefall.freebsd.org> Date: Mon, 18 Dec 1995 11:48:36 -0800 From: "Justin T. Gibbs" Sender: owner-questions@FreeBSD.ORG Precedence: bulk >This is probably your problem. I found this in cd.c: > >#define CDUNIT(DEV) ((minor(DEV)&0xF8) >> 3) /* 5 bit unit */ > >It should be: > >#define CDUNIT(DEV) ((minor(DEV) >> 11) | ((minor(DEV)&0xF8) >> 3)) > >This is probably a general problem in the SCSI code. Actually, this only becomes a factor with 32 cds. Hmmm. Can you put ddb in your kernel and get a traceback from the panic? -- Justin T. Gibbs =========================================== FreeBSD: Turning PCs into workstations ===========================================