From owner-cvs-src-old@FreeBSD.ORG Sat Feb 13 12:41:30 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 591AF106568B for ; Sat, 13 Feb 2010 12:41:30 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 457E68FC19 for ; Sat, 13 Feb 2010 12:41:30 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1DCfUtu015235 for ; Sat, 13 Feb 2010 12:41:30 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1DCfUmA015234 for cvs-src-old@freebsd.org; Sat, 13 Feb 2010 12:41:30 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <201002131241.o1DCfUmA015234@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Sat, 13 Feb 2010 12:41:07 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/msdosfs bootsect.h bpb.h direntry.h msdosfs_conv.c msdosfs_lookup.c msdosfs_vnops.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Feb 2010 12:41:30 -0000 kib 2010-02-13 12:41:07 UTC FreeBSD src repository Modified files: sys/fs/msdosfs bootsect.h bpb.h direntry.h msdosfs_conv.c msdosfs_lookup.c msdosfs_vnops.c Log: SVN rev 203827 on 2010-02-13 12:41:07Z by kib - Add idempotency guards so the structures can be used in other utilities. - Update bpb structs with reserved fields. - In direntry struct join deName with deExtension. Although a fix was attempted in the past, these fields were being overflowed, Now this is consistent with the spec, and we can now share the WinChksum code with NetBSD. Submitted by: Pedro F. Giffuni Mostly obtained from: NetBSD Reviewed by: bde MFC after: 2 weeks Revision Changes Path 1.14 +4 -0 src/sys/fs/msdosfs/bootsect.h 1.17 +6 -2 src/sys/fs/msdosfs/bpb.h 1.25 +5 -3 src/sys/fs/msdosfs/direntry.h 1.57 +4 -13 src/sys/fs/msdosfs/msdosfs_conv.c 1.55 +2 -2 src/sys/fs/msdosfs/msdosfs_lookup.c 1.195 +3 -3 src/sys/fs/msdosfs/msdosfs_vnops.c