From owner-freebsd-current Thu Aug 1 02:42:18 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id CAA06976 for current-outgoing; Thu, 1 Aug 1996 02:42:18 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.5/8.7.3) with SMTP id CAA06971 for ; Thu, 1 Aug 1996 02:42:13 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id TAA18475; Thu, 1 Aug 1996 19:36:47 +1000 Date: Thu, 1 Aug 1996 19:36:47 +1000 From: Bruce Evans Message-Id: <199608010936.TAA18475@godzilla.zeta.org.au> To: peter@spinner.DIALix.COM, terry@lambert.org Subject: Re: DEVFS broken by last devsw_add_generic()/bdevvp() changes Cc: current@FreeBSD.ORG Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >If an I/O is out of range on a wd, the wd strategy returns an error. >If an I/O is out of range on an sd or od, the strategy does not error >(there is a "goto done;" without an error being set). Actually, they all "goto done;" and this is correct. dscheck() sets the error flag if necessary. There is no error for EOF. Bruce