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

Pedro F. Giffuni pfg at FreeBSD.org
Sat Aug 6 16:48:41 UTC 2016


Author: pfg
Date: Sat Aug  6 16:48:40 2016
New Revision: 303799
URL: https://svnweb.freebsd.org/changeset/base/303799

Log:
  ext2fs:	Add some more inode flags.
  
  These are currently unused in out implementation but it is good to keep
  them for reference.
  
  Obtained from:	NetBSD (CVS Rev. 1.35)
  MFC after:	1 month

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

Modified: head/sys/fs/ext2fs/ext2_dinode.h
==============================================================================
--- head/sys/fs/ext2fs/ext2_dinode.h	Sat Aug  6 15:29:46 2016	(r303798)
+++ head/sys/fs/ext2fs/ext2_dinode.h	Sat Aug  6 16:48:40 2016	(r303799)
@@ -71,7 +71,10 @@
 #define	EXT4_TOPDIR		0x00020000 /* Top of directory hierarchies*/
 #define	EXT4_HUGE_FILE		0x00040000	/* Set to each huge file */
 #define	EXT4_EXTENTS		0x00080000	/* Inode uses extents */
+#define	EXT4_EA_INODE		0x00200000	/* Inode used for large EA */
 #define	EXT4_EOFBLOCKS		0x00400000 /* Blocks allocated beyond EOF */
+#define	EXT4_INLINE_DATA	0x10000000 /* Inode has inline data */
+#define	EXT4_PROJINHERIT	0x20000000 /* Children inherit project ID */
 
 /*
  * Definitions for nanosecond timestamps.


More information about the svn-src-head mailing list