From owner-p4-projects@FreeBSD.ORG Tue Apr 26 13:41:48 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id A82A81065674; Tue, 26 Apr 2011 13:41:48 +0000 (UTC) Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6ABBB1065672 for ; Tue, 26 Apr 2011 13:41:48 +0000 (UTC) (envelope-from lz@FreeBSD.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 58DA98FC1D for ; Tue, 26 Apr 2011 13:41:48 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p3QDfmlN092895 for ; Tue, 26 Apr 2011 13:41:48 GMT (envelope-from lz@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p3QDfmHr092892 for perforce@freebsd.org; Tue, 26 Apr 2011 13:41:48 GMT (envelope-from lz@FreeBSD.org) Date: Tue, 26 Apr 2011 13:41:48 GMT Message-Id: <201104261341.p3QDfmHr092892@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to lz@FreeBSD.org using -f From: Zheng Liu To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 192137 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 26 Apr 2011 13:41:48 -0000 http://p4web.freebsd.org/@@192137?ac=10 Change 192137 by lz@freebsd-dev on 2011/04/26 13:41:27 Rename two files like ffs. Affected files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#45 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_balloc.c#9 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_hash.c#3 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_hash.h#3 move/delete .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_inode.c#8 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.c#4 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.h#4 move/delete .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_vfsops.c#15 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/hash.h#1 move/add .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/prealloc.h#1 move/add Moved files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/hash.h#1 moved from //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_hash.h#2 .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/prealloc.h#1 moved from //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.h#3 Differences ... ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#45 (text+ko) ==== @@ -51,7 +51,7 @@ #include #include #include -#include +#include #define FANCY_REALLOC 1 ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_balloc.c#9 (text+ko) ==== @@ -49,7 +49,7 @@ #include #include #include -#include +#include /* * Balloc defines the structure of file system storage ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_hash.c#3 (text+ko) ==== @@ -13,7 +13,7 @@ #include #include -#include +#include /* * Constants for MD4Transform routine. ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_inode.c#8 (text+ko) ==== @@ -52,7 +52,7 @@ #include #include #include -#include +#include static int ext2_indirtrunc(struct inode *, int32_t, int32_t, int32_t, int, long *); ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.c#4 (text+ko) ==== @@ -41,7 +41,7 @@ #include #include #include -#include +#include static u_long ext2_alloc_blk(struct inode *, int, struct buf *, int32_t, struct ext2_rsv_win *); static int ext2_alloc_new_rsv(struct inode *, int, struct buf *, int32_t); ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_vfsops.c#15 (text+ko) ==== @@ -62,7 +62,7 @@ #include #include #include -#include +#include static int ext2_flushfiles(struct mount *mp, int flags, struct thread *td); static int ext2_mountfs(struct vnode *, struct mount *); ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/hash.h#1 (text+ko) ==== @@ -7,8 +7,8 @@ * Zheng Liu */ -#ifndef _FS_EXT2FS_EXT2_HASH_H_ -#define _FS_EXT2FS_EXT2_HASH_H_ +#ifndef _FS_EXT2FS_HASH_H_ +#define _FS_EXT2FS_HASH_H_ /* ext2_hash.c */ u_int32_t half_md4_transform(u_int32_t [], u_int32_t []); @@ -18,4 +18,4 @@ u_int32_t legacy_hash_signed(const char *, int); u_int32_t legacy_hash_unsigned(const char *, int); -#endif /* !_FS_EXT2FS_EXT2_HASH_H_ */ +#endif /* !_FS_EXT2FS_HASH_H_ */ ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/prealloc.h#1 (text+ko) ==== @@ -23,10 +23,10 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD: src/sys/fs/ext2fs/ext2_prealloc.h,v 0.1 2011/03/27 13:37:00 lz Exp $ + * $FreeBSD: src/sys/fs/ext2fs/prealloc.h,v 0.1 2011/03/27 13:37:00 lz Exp $ */ -#ifndef _FS_EXT2FS_EXT2_PREALLOC_H_ -#define _FS_EXT2FS_EXT2_PREALLOC_H_ +#ifndef _FS_EXT2FS_PREALLOC_H_ +#define _FS_EXT2FS_PREALLOC_H_ #include @@ -76,4 +76,4 @@ int ext2_prealloc(struct inode *, int32_t, int32_t, int, struct ucred *); void ext2_remove_rsv_win(struct m_ext2fs *, struct ext2_rsv_win *); -#endif /* !_FS_EXT2FS_EXT2_PREALLOC_H_ */ +#endif /* !_FS_EXT2FS_PREALLOC_H_ */