From owner-cvs-all@FreeBSD.ORG Tue Feb 17 00:51:50 2004 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 B940D16A4CE; Tue, 17 Feb 2004 00:51:50 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E3C343D1D; Tue, 17 Feb 2004 00:51:50 -0800 (PST) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i1H8poGe060844; Tue, 17 Feb 2004 00:51:50 -0800 (PST) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i1H8pobS060840; Tue, 17 Feb 2004 00:51:50 -0800 (PST) (envelope-from tjr) Message-Id: <200402170851.i1H8pobS060840@repoman.freebsd.org> From: "Tim J. Robbins" Date: Tue, 17 Feb 2004 00:51:50 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/msdosfs msdosfs_vfsops.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: Tue, 17 Feb 2004 08:51:50 -0000 tjr 2004/02/17 00:51:50 PST FreeBSD src repository Modified files: sys/fs/msdosfs msdosfs_vfsops.c Log: If the "next free cluster" field of the FSInfo block is 0xFFFFFFFF, it means that the correct value is unknown. Since this value is just a hint to improve performance, initially assume that the first non-reserved cluster is free, then correct this assumption if necessary before writing the FSInfo block back to disk. PR: 62826 MFC after: 2 weeks Revision Changes Path 1.117 +4 -2 src/sys/fs/msdosfs/msdosfs_vfsops.c