From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] Standalone Fileserver with IDE disk? From: Geoff Collyer In-Reply-To: <86oexmv29j.fsf@gic.mteege.de> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Mon, 15 Sep 2003 02:37:21 -0700 Topicbox-Message-UUID: 36e45e34-eacc-11e9-9e20-41e7f4b1d025 See /sys/src/fs/pc/devata.c; IDE == ATA == PATA. It works; I have 4 IDE disks on my file server. You need to declare the controllers as apparently not described in plan9.ini(8) (to my surprise): ata0=type=ata irq=14 ata1=type=ata irq=15 The bad news is, as jmk noted, that the driver uses programmed I/O, not DMA, so use of the IDE disks chews up the file server's CPU. I haven't had time to fix it and just making the cache disk into a SCSI disk would largely solve the problem; doing the same for `other' would almost entirely solve it.