summaryrefslogtreecommitdiffstats
path: root/include/linux/ext_fs_sb.h
blob: 19004d80f15ed5a6cf75dabeb368c6d7b4fb0cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _EXT_FS_SB
#define _EXT_FS_SB

/*
 * extended-fs super-block data in memory
 */
struct ext_sb_info {
			unsigned long s_ninodes;
			unsigned long s_nzones;
			unsigned long s_firstdatazone;
			unsigned long s_log_zone_size;
			unsigned long s_max_size;
			unsigned long s_firstfreeblocknumber;
			unsigned long s_freeblockscount;
			struct buffer_head * s_firstfreeblock;
			unsigned long s_firstfreeinodenumber;
			unsigned long s_freeinodescount;
			struct buffer_head * s_firstfreeinodeblock;
};

#endif