From owner-freebsd-hackers Wed Mar 22 03:35:43 1995 Return-Path: hackers-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id DAA02697 for hackers-outgoing; Wed, 22 Mar 1995 03:35:43 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id DAA02686 for ; Wed, 22 Mar 1995 03:35:27 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id VAA11806; Wed, 22 Mar 1995 21:32:15 +1000 Date: Wed, 22 Mar 1995 21:32:15 +1000 From: Bruce Evans Message-Id: <199503221132.VAA11806@godzilla.zeta.org.au> To: freebsd-hackers@freefall.cdrom.com, kuku@gilberto.physik.rwth-aachen.de Subject: Re: Why IDE is bad Sender: hackers-owner@FreeBSD.org Precedence: bulk >Regarding the difference in CPU utilization, could it be - I don't >know the driver internals - that it's the bounce buffer technique >that costs CPU while the SCSI controller uses bus master transfers all >the time? Or were you comparing VLB EIDE vs. SCSI ? This might explain why my Intr time is so much lower than Poul's. I have only 16MB, and don't use option BOUNCE_BUFFERS. The bcopy() for bouncing is done in a call from biodone(). biodone() is called from the interrupt handler, at least for the wd driver. Bruce