diff options
author | Theodore Ts'o <tytso@mit.edu> | 2000-12-31 03:00:42 +0000 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2000-12-31 03:00:42 +0000 |
commit | f7810aae8aae70bf938689df8aa859e6d9f31bba (patch) | |
tree | a2606c4527491ea4d91c0c28a7d39ac0472e0552 /include | |
parent | f13a987afa5b7d12c8da69d1a1c282b0dfc0b5f4 (diff) | |
download | e2fsprogs-f7810aae8aae70bf938689df8aa859e6d9f31bba.tar.gz |
.del-ext2_fs.h~7a460879, ChangeLog:
ext2_fs.h (EXT3_JOURNAL_DATA_FL): Add new inode flag definition.
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/ChangeLog | 2 | ||||
-rw-r--r-- | include/linux/ext2_fs.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/ChangeLog b/include/linux/ChangeLog index 803993ee..531ac410 100644 --- a/include/linux/ChangeLog +++ b/include/linux/ChangeLog @@ -1,5 +1,7 @@ 2000-12-30 <tytso@snap.thunk.org> + * ext2_fs.h (EXT3_JOURNAL_DATA_FL): Add new inode flag definition. + * jfs.h: Update to 0.5e version 2000-12-09 <tytso@snap.thunk.org> diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h index 479c9e8c..be66a3c0 100644 --- a/include/linux/ext2_fs.h +++ b/include/linux/ext2_fs.h @@ -193,9 +193,10 @@ struct ext2_group_desc /* End compression flags --- maybe not all used */ #define EXT2_BTREE_FL 0x00001000 /* btree format dir */ #define EXT2_IMAGIC_FL 0x00002000 +#define EXT3_JOURNAL_DATA_FL 0x00004000 /* file data should be journaled */ #define EXT2_RESERVED_FL 0x80000000 /* reserved for ext2 lib */ -#define EXT2_FL_USER_VISIBLE 0x00001FFF /* User visible flags */ +#define EXT2_FL_USER_VISIBLE 0x00005FFF /* User visible flags */ #define EXT2_FL_USER_MODIFIABLE 0x000000FF /* User modifiable flags */ /* |