From owner-cvs-sys Mon Oct 27 06:58:19 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id GAA24140 for cvs-sys-outgoing; Mon, 27 Oct 1997 06:58:19 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id GAA23980; Mon, 27 Oct 1997 06:55:58 -0800 (PST) (envelope-from bde@FreeBSD.org) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id GAA09623; Mon, 27 Oct 1997 06:55:51 -0800 (PST) Date: Mon, 27 Oct 1997 06:55:51 -0800 (PST) Message-Id: <199710271455.GAA09623@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/isofs/cd9660 cd9660_vnops.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1997/10/27 06:55:50 PST Modified files: sys/isofs/cd9660 cd9660_vnops.c Log: Use bread() instead of cluster_read() for reading the last block in a file. There was a (harmless, I think) off-by-1 error. This was fixed in ufs long ago (rev.1.21 of ufs_readwrite.c) but not in cd9660. cd9660_read() has stagnated in many other ways. It is closer to the Net/2 ufs_read() (which is was cloned from) than ufs_read() itself is. Revision Changes Path 1.49 +2 -2 src/sys/isofs/cd9660/cd9660_vnops.c