Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Apr 2011 13:41:48 GMT
From:      Zheng Liu <lz@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 192137 for review
Message-ID:  <201104261341.p3QDfmHr092892@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <fs/ext2fs/ext2fs.h>
 #include <fs/ext2fs/fs.h>
 #include <fs/ext2fs/ext2_extern.h>
-#include <fs/ext2fs/ext2_prealloc.h>
+#include <fs/ext2fs/prealloc.h>
 
 #define FANCY_REALLOC 1
 

==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_balloc.c#9 (text+ko) ====

@@ -49,7 +49,7 @@
 #include <fs/ext2fs/fs.h>
 #include <fs/ext2fs/ext2_extern.h>
 #include <fs/ext2fs/ext2_mount.h>
-#include <fs/ext2fs/ext2_prealloc.h>
+#include <fs/ext2fs/prealloc.h>
 
 /*
  * 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 <sys/stat.h>
 #include <sys/hash.h>
 
-#include <fs/ext2fs/ext2_hash.h>
+#include <fs/ext2fs/hash.h>
 
 /*
  * Constants for MD4Transform routine.

==== //depot/projects/soc2010/extfs/src/sys/fs/ext2fs/ext2_inode.c#8 (text+ko) ====

@@ -52,7 +52,7 @@
 #include <fs/ext2fs/ext2fs.h>
 #include <fs/ext2fs/fs.h>
 #include <fs/ext2fs/ext2_extern.h>
-#include <fs/ext2fs/ext2_prealloc.h>
+#include <fs/ext2fs/prealloc.h>
 
 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 <fs/ext2fs/ext2fs.h>
 #include <fs/ext2fs/fs.h>
 #include <fs/ext2fs/ext2_extern.h>
-#include <fs/ext2fs/ext2_prealloc.h>
+#include <fs/ext2fs/prealloc.h>
 
 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 <fs/ext2fs/ext2fs.h>
 #include <fs/ext2fs/ext2_dinode.h>
 #include <fs/ext2fs/ext2_extern.h>
-#include <fs/ext2fs/ext2_prealloc.h>
+#include <fs/ext2fs/prealloc.h>
 
 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 <sys/tree.h>
 
@@ -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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104261341.p3QDfmHr092892>