From owner-cvs-src@FreeBSD.ORG Sat Jul 14 01:28:06 2007 Return-Path: X-Original-To: cvs-src@freebsd.org Delivered-To: cvs-src@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 900D016A402 for ; Sat, 14 Jul 2007 01:28:06 +0000 (UTC) (envelope-from minimarmot@gmail.com) Received: from nz-out-0506.google.com (nz-out-0506.google.com [64.233.162.236]) by mx1.freebsd.org (Postfix) with ESMTP id 4EAD513C467 for ; Sat, 14 Jul 2007 01:28:06 +0000 (UTC) (envelope-from minimarmot@gmail.com) Received: by nz-out-0506.google.com with SMTP id l8so532760nzf for ; Fri, 13 Jul 2007 18:28:05 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RL0JoGTxZVTc1iYzhYTVV4clrBl9oGLpExOh2jCkhxphJW4clKVKqfdjHYTpThpIb842RRITSyd8OgfgfbAuj/uCdgXDmEhwrSf6hkZT4XELN+3eaab2CPWzoWep67UGJQb2jrSAMxNso5VFkx1ehgqLQMskulyPSrHiLdIYpCI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=P5Q2ce6ZlVo6dr+UIZdu+YGPda5kYrq95RWumei5ac32ZRjndXdMhE72MfcwT1g7iZA2zyT93fA38kVHYUmUi0RmevaTAbncPKZUh7OTxECzmJeziERQf0AkxSM+sEoiPizPU4g90X9BY5Pv8/JQu0jLt5LGdlivvTAlD7KAfHw= Received: by 10.142.106.18 with SMTP id e18mr169657wfc.1184374858168; Fri, 13 Jul 2007 18:00:58 -0700 (PDT) Received: by 10.143.14.5 with HTTP; Fri, 13 Jul 2007 18:00:58 -0700 (PDT) Message-ID: <47d0403c0707131800h571bfb97ydf12f313b7fd68a1@mail.gmail.com> Date: Fri, 13 Jul 2007 20:00:58 -0500 From: "Ben Kaduk" To: "Bruce Evans" In-Reply-To: <200707121717.l6CHHl2w076935@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200707121717.l6CHHl2w076935@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/fs/msdosfs msdosfs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jul 2007 01:28:06 -0000 Hi Bruce, On 7/12/07, Bruce Evans wrote: > bde 2007-07-12 17:17:47 UTC > > FreeBSD src repository > > Modified files: > sys/fs/msdosfs msdosfs_vfsops.c > Log: > Round up the FAT block size to a multiple of the sector size so that i/o > to the FAT is possible. > > Make the FAT block size less arbitrary before it is rounded up: > - for FAT12, default to 3*512 instead of to 3 sectors. The magic 3 is > the default number of 512-byte FAT sectors on a floppy drive. That > many sectors is too many if the sector size is larger. > - for !FAT12, default to PAGE_SIZE instead of to 4096. Remove > MSDOSFS_DFLTBSIZE since it only obfuscated this 4096. > [snip] I recently got a patch committed to the installation chapter of the handbook, which included two occasions of clarifying ``MS-DOS filesystem'' as ``FAT16 or FAT32'' [1,2 for present incarnation]. I am too young to remember the existence of FAT12, so I'll have to defer to others as to whether the handbook should mention FAT12 in the same breath as FAT16 and FAT32. What do you think? Thanks, Ben Kaduk [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-pre.html [2] http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/install-trouble.html