From owner-cvs-sys Sun Jan 14 22:40:27 1996 Return-Path: owner-cvs-sys Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id WAA23272 for cvs-sys-outgoing; Sun, 14 Jan 1996 22:40:27 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id WAA23258 Sun, 14 Jan 1996 22:40:14 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id RAA09810; Mon, 15 Jan 1996 17:35:04 +1100 Date: Mon, 15 Jan 1996 17:35:04 +1100 From: Bruce Evans Message-Id: <199601150635.RAA09810@godzilla.zeta.org.au> To: bde@freebsd.org, phk@critter.tfs.com Subject: Re: cvs commit: src/sys/dev/vn vn.c Cc: CVS-committers@freebsd.org, cvs-sys@freebsd.org Sender: owner-cvs-sys@freebsd.org Precedence: bulk >> Fixed an overflowing multiplication in vnstrategy() by replacing it with >> the standard macro dbtob(). The non-B_PAGING case now works well enough >> to run newfs on a 32GB virtual drive. >Say WHAT ???? >where did you get that one Bruce ? fd = creat("32GB virtual drive", 0600); lseek(fd, (off_t)32 * 1024 * 1024 * 1024 - 1, SEEK_SET); write(fd, "", 1); Bruce