From owner-cvs-all@FreeBSD.ORG Thu Mar 27 12:37:36 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63EBD37B401; Thu, 27 Mar 2003 12:37:36 -0800 (PST) Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1801C43FAF; Thu, 27 Mar 2003 12:37:32 -0800 (PST) (envelope-from jake@k6.locore.ca) Received: from k6.locore.ca (localhost.locore.ca [127.0.0.1]) by k6.locore.ca (8.12.8/8.12.8) with ESMTP id h2RKhTxS094326; Thu, 27 Mar 2003 15:43:29 -0500 (EST) (envelope-from jake@k6.locore.ca) Received: (from jake@localhost) by k6.locore.ca (8.12.8/8.12.8/Submit) id h2RKhTDf094325; Thu, 27 Mar 2003 15:43:29 -0500 (EST) Date: Thu, 27 Mar 2003 15:43:29 -0500 From: Jake Burkholder To: Tor Egge Message-ID: <20030327154329.C87908@locore.ca> References: <200303262340.h2QNegJg065498@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200303262340.h2QNegJg065498@repoman.freebsd.org>; from tegge@FreeBSD.org on Wed, Mar 26, 2003 at 03:40:42PM -0800 X-Spam-Status: No, hits=-26.2 required=5.0 tests=AWL,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES,USER_AGENT_MUTT autolearn=ham version=2.50 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES files options src/sys/kern vfs_bio.c src/sys/ufs/ffs ffs_rawread.c ffs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Mar 2003 20:37:38 -0000 Apparently, On Wed, Mar 26, 2003 at 03:40:42PM -0800, Tor Egge said words to the effect of; > tegge 2003/03/26 15:40:42 PST > > FreeBSD src repository > > Modified files: > sys/conf NOTES files options > sys/kern vfs_bio.c > sys/ufs/ffs ffs_vnops.c > Added files: > sys/ufs/ffs ffs_rawread.c > Log: > Add support for reading directly from file to userland buffer when the > O_DIRECT descriptor status flag is set and both offset and length is a > multiple of the physical media sector size. Looks like there's a typo in checking the return value of vmapbuf: ... vmapbuf(bp); if (vmapbuf < 0) return EFAULT; ... Jake