diff options
| author | Tony Lindgren <tony@atomide.com> | 2011-11-07 12:27:23 -0800 | 
|---|---|---|
| committer | Tony Lindgren <tony@atomide.com> | 2011-11-07 12:27:23 -0800 | 
| commit | d30cc16c8e48368e0518f4975a78711e53e14a0f (patch) | |
| tree | 26b57f7ab5a963cc3d6c57dff6951bd930875583 /include/linux/ext3_fs.h | |
| parent | 41eb2d813f558900884e240c2f723e36c7bd151f (diff) | |
| parent | a1bcc1dcef8451b4291ea2a1b2677cb194102952 (diff) | |
| download | olio-linux-3.10-d30cc16c8e48368e0518f4975a78711e53e14a0f.tar.xz olio-linux-3.10-d30cc16c8e48368e0518f4975a78711e53e14a0f.zip  | |
Merge branch 'fixes-modulesplit' into fixes
Diffstat (limited to 'include/linux/ext3_fs.h')
| -rw-r--r-- | include/linux/ext3_fs.h | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 81965cce6bf..dec99116a0e 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h @@ -180,8 +180,8 @@ struct ext3_group_desc  /* Flags that should be inherited by new inodes from their parent. */  #define EXT3_FL_INHERITED (EXT3_SECRM_FL | EXT3_UNRM_FL | EXT3_COMPR_FL |\ -			   EXT3_SYNC_FL | EXT3_IMMUTABLE_FL | EXT3_APPEND_FL |\ -			   EXT3_NODUMP_FL | EXT3_NOATIME_FL | EXT3_COMPRBLK_FL|\ +			   EXT3_SYNC_FL | EXT3_NODUMP_FL |\ +			   EXT3_NOATIME_FL | EXT3_COMPRBLK_FL |\  			   EXT3_NOCOMPR_FL | EXT3_JOURNAL_DATA_FL |\  			   EXT3_NOTAIL_FL | EXT3_DIRSYNC_FL) @@ -381,7 +381,7 @@ struct ext3_inode {   * Mount flags   */  #define EXT3_MOUNT_CHECK		0x00001	/* Do mount-time checks */ -#define EXT3_MOUNT_OLDALLOC		0x00002  /* Don't use the new Orlov allocator */ +/* EXT3_MOUNT_OLDALLOC was there */  #define EXT3_MOUNT_GRPID		0x00004	/* Create files with directory's group */  #define EXT3_MOUNT_DEBUG		0x00008	/* Some debugging messages */  #define EXT3_MOUNT_ERRORS_CONT		0x00010	/* Continue on errors */  |