svn commit: r251344 - head/sys/fs/ext2fs

Pedro F. Giffuni pfg at FreeBSD.org
Mon Jun 3 20:02:46 UTC 2013


Author: pfg
Date: Mon Jun  3 20:02:45 2013
New Revision: 251344
URL: http://svnweb.freebsd.org/changeset/base/251344

Log:
  ext2fs: Small cosmetic fixes.
  
  Make a long macro readable and sort a header.
  
  Obtained from:	Christoph Mallon
  MFC after:	3 days

Modified:
  head/sys/fs/ext2fs/ext2_bmap.c
  head/sys/fs/ext2fs/ext2_dinode.h

Modified: head/sys/fs/ext2fs/ext2_bmap.c
==============================================================================
--- head/sys/fs/ext2fs/ext2_bmap.c	Mon Jun  3 19:51:32 2013	(r251343)
+++ head/sys/fs/ext2fs/ext2_bmap.c	Mon Jun  3 20:02:45 2013	(r251344)
@@ -47,8 +47,8 @@
 
 #include <fs/ext2fs/inode.h>
 #include <fs/ext2fs/ext2fs.h>
-#include <fs/ext2fs/ext2_mount.h>
 #include <fs/ext2fs/ext2_extern.h>
+#include <fs/ext2fs/ext2_mount.h>
 
 /*
  * Bmap converts the logical block number of a file to its physical block

Modified: head/sys/fs/ext2fs/ext2_dinode.h
==============================================================================
--- head/sys/fs/ext2fs/ext2_dinode.h	Mon Jun  3 19:51:32 2013	(r251343)
+++ head/sys/fs/ext2fs/ext2_dinode.h	Mon Jun  3 20:02:45 2013	(r251344)
@@ -77,7 +77,8 @@
 #define EXT3_EPOCH_MASK	((1 << EXT3_EPOCH_BITS) - 1)
 #define EXT3_NSEC_MASK	(~0UL << EXT3_EPOCH_BITS)
 
-#define E2DI_HAS_XTIME(ip)	(EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, EXT2F_ROCOMPAT_EXTRA_ISIZE))
+#define E2DI_HAS_XTIME(ip)	(EXT2_HAS_RO_COMPAT_FEATURE(ip->i_e2fs, \
+				    EXT2F_ROCOMPAT_EXTRA_ISIZE))
 
 /*
  * Structure of an inode on the disk


More information about the svn-src-all mailing list