summaryrefslogtreecommitdiffstats
path: root/include/linux/ext2_fs_i.h
blob: 103e360874fca6b80f0f26b8329cbcc28de24569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *  linux/include/linux/ext2_fs_i.h
 *
 *  Copyright (C) 1992, 1993, 1994  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 {
	unsigned long  i_data[15];
	unsigned long  i_flags;
	unsigned long  i_faddr;
	unsigned char  i_frag_no;
	unsigned char  i_frag_size;
	unsigned short i_osync;
	unsigned long  i_file_acl;
	unsigned long  i_dir_acl;
	unsigned long  i_dtime;
	unsigned long  i_version;
	unsigned long  i_block_group;
	unsigned long  i_next_alloc_block;
	unsigned long  i_next_alloc_goal;
	unsigned long  i_prealloc_block;
	unsigned long  i_prealloc_count;
};

#endif	/* _LINUX_EXT2_FS_I */