From owner-freebsd-hackers Tue Jan 16 07:54:55 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA21609 for hackers-outgoing; Tue, 16 Jan 1996 07:54:55 -0800 (PST) Received: from who.cdrom.com (who.cdrom.com [192.216.222.3]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id HAA21504 Tue, 16 Jan 1996 07:54:36 -0800 (PST) Received: from rover.village.org (rover.village.org [198.137.146.49]) by who.cdrom.com (8.6.12/8.6.11) with ESMTP id GAA26390 ; Tue, 16 Jan 1996 06:20:46 -0800 Received: from localhost (localhost [127.0.0.1]) by rover.village.org (8.6.11/8.6.6) with SMTP id HAA01303; Tue, 16 Jan 1996 07:20:37 -0700 Message-Id: <199601161420.HAA01303@rover.village.org> To: Peter Dufault Subject: Re: A few questions Cc: questions@freebsd.org, hackers@freebsd.org In-reply-to: Your message of Tue, 09 Jan 1996 20:59:36 EST Date: Tue, 16 Jan 1996 07:20:37 -0700 From: Warner Losh Sender: owner-hackers@freebsd.org Precedence: bulk : There was a bug in the multi CD code recently fixed in cd.c. It was : (from memory here...) : : > if(cd->dkunit >= 0) { : : instead of: : : > if(cd->dkunit) { : : since cd->dkunit is set to -1 when dk_ndrive > DK_NDRIVE. : : With this fixed the code seemed to work well, accessing 7 : disks continuously over a 12 hour period. I've also had the nakamichi work with this patch (and one other that tells the driver to scan multiple luns in scsiconf.c) on my FreeBS 2.0R box. At least for the last 24 hours or so... Warner