Date: Mon, 18 Dec 1995 11:48:36 -0800 From: "Justin T. Gibbs" <gibbs@freefall.freebsd.org> Cc: Martin Sapsed <m.sapsed@bangor.ac.uk>, freebsd-questions@FreeBSD.ORG, freebsd-bugs@FreeBSD.ORG Subject: Re: Problem with FreeBSD 2.1.0-RELEASE Message-ID: <199512181948.LAA15318@freefall.freebsd.org> In-Reply-To: Your message of "Mon, 18 Dec 1995 11:30:36 PST." <199512181930.LAA14250@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
>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 ===========================================
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199512181948.LAA15318>