From owner-p4-projects@FreeBSD.ORG Sun Mar 27 05:48:52 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id AD79A1065672; Sun, 27 Mar 2011 05:48:52 +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 57942106566C for ; Sun, 27 Mar 2011 05:48:52 +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 053F58FC08 for ; Sun, 27 Mar 2011 05:48:52 +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 p2R5mpWP065422 for ; Sun, 27 Mar 2011 05:48:51 GMT (envelope-from lz@FreeBSD.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p2R5mpU3065419 for perforce@freebsd.org; Sun, 27 Mar 2011 05:48:51 GMT (envelope-from lz@FreeBSD.org) Date: Sun, 27 Mar 2011 05:48:51 GMT Message-Id: <201103270548.p2R5mpU3065419@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 190611 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: Sun, 27 Mar 2011 05:48:52 -0000 http://p4web.freebsd.org/@@190611?ac=10 Change 190611 by lz@freebsd-dev on 2011/03/27 05:48:24 Rename ext2_rsv_win.h to ext2_prealloc.h. Affected files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#41 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_balloc.c#7 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_inode.c#7 edit .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.h#1 move/add .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_rsv_win.h#13 move/delete .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_vfsops.c#14 edit Moved files ... .. //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_prealloc.h#1 moved from //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_rsv_win.h#12 Differences ... ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_alloc.c#41 (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#7 (text+ko) ==== @@ -49,7 +49,8 @@ #include #include #include -#include +#include + /* * Balloc defines the structure of file system storage * by allocating the physical blocks on a device given ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_inode.c#7 (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.h#1 (text+ko) ==== @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2010, 2010 Zheng Liu + * Copyright (c) 2010, 2011 Zheng Liu * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -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_rsv_win.h,v 0.1 2010/05/08 12:41:51 lz Exp $ + * $FreeBSD: src/sys/fs/ext2fs/ext2_prealloc.h,v 0.1 2011/03/27 13:37:00 lz Exp $ */ -#ifndef _FS_EXT2FS_EXT2_RSV_WIN_H_ -#define _FS_EXT2FS_EXT2_RSV_WIN_H_ +#ifndef _FS_EXT2FS_EXT2_PREALLOC_H_ +#define _FS_EXT2FS_EXT2_PREALLOC_H_ #include @@ -75,4 +75,4 @@ void ext2_discard_rsv(struct inode *ip); int ext2_alloc_rsv(struct inode *, int32_t, int32_t, int, struct ucred *, int32_t *); -#endif /* !_FS_EXT2FS_EXT2_RSV_WIN_H_ */ +#endif /* !_FS_EXT2FS_EXT2_PREALLOC_H_ */ ==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_vfsops.c#14 (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 *);