Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Aug 2016 16:48:40 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r303799 - head/sys/fs/ext2fs
Message-ID:  <201608061648.u76Gmejb085985@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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.



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