diff options
author | Miles Bader <miles@gnu.org> | 1995-04-11 02:25:14 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-04-11 02:25:14 +0000 |
commit | 445d60d75f81a7428f80e29bdb59a4c2745a8bd5 (patch) | |
tree | 9185ef90be6c6302c31bf8099b77d801f25ab06c /ext2fs/ext2_fs_i.h | |
parent | 54ab36c50603b0e85ed1fe7af348a31cd3714c97 (diff) | |
download | hurd-445d60d75f81a7428f80e29bdb59a4c2745a8bd5.tar.gz hurd-445d60d75f81a7428f80e29bdb59a4c2745a8bd5.tar.bz2 hurd-445d60d75f81a7428f80e29bdb59a4c2745a8bd5.zip |
Initial revision
Diffstat (limited to 'ext2fs/ext2_fs_i.h')
-rw-r--r-- | ext2fs/ext2_fs_i.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/ext2fs/ext2_fs_i.h b/ext2fs/ext2_fs_i.h new file mode 100644 index 00000000..f3eca448 --- /dev/null +++ b/ext2fs/ext2_fs_i.h @@ -0,0 +1,40 @@ +/* + * linux/include/linux/ext2_fs_i.h + * + * Copyright (C) 1992, 1993, 1994, 1995 + * Remy Card (card@masi.ibp.fr) + * Laboratoire MASI - Institut Blaise Pascal + * Universite Pierre et Marie Curie (Paris VI) + * + * from + * + * linux/include/linux/minix_fs_i.h + * + * Copyright (C) 1991, 1992 Linus Torvalds + */ + +#ifndef _LINUX_EXT2_FS_I +#define _LINUX_EXT2_FS_I + +/* + * second extended file system inode data in memory + */ +struct ext2_inode_info { + __u32 i_data[15]; + __u32 i_flags; + __u32 i_faddr; + __u8 i_frag_no; + __u8 i_frag_size; + __u16 i_osync; + __u32 i_file_acl; + __u32 i_dir_acl; + __u32 i_dtime; + __u32 i_version; + __u32 i_block_group; + __u32 i_next_alloc_block; + __u32 i_next_alloc_goal; + __u32 i_prealloc_block; + __u32 i_prealloc_count; +}; + +#endif /* _LINUX_EXT2_FS_I */ |