1 #ifndef _HPFS_FS_I
2 #define _HPFS_FS_I
3
4 struct hpfs_inode_info {
5 ino_t i_parent_dir;
6 unsigned i_dno;
7 unsigned i_dpos;
8 unsigned i_dsubdno;
9 unsigned i_file_sec;
10 unsigned i_disk_sec;
11 unsigned i_n_secs;
12 unsigned i_conv : 2;
13 };
14
15 #define i_hpfs_dno u.hpfs_i.i_dno
16 #define i_hpfs_parent_dir u.hpfs_i.i_parent_dir
17 #define i_hpfs_n_secs u.hpfs_i.i_n_secs
18 #define i_hpfs_file_sec u.hpfs_i.i_file_sec
19 #define i_hpfs_disk_sec u.hpfs_i.i_disk_sec
20 #define i_hpfs_dpos u.hpfs_i.i_dpos
21 #define i_hpfs_dsubdno u.hpfs_i.i_dsubdno
22 #define i_hpfs_conv u.hpfs_i.i_conv
23
24 #endif