1 #ifndef __ROMFS_FS_I
2 #define __ROMFS_FS_I
3
4 /* inode in-kernel data */
5
6 struct romfs_inode_info {
7 unsigned long i_metasize; /* size of non-data area */
8 unsigned long i_dataoffset; /* from the start of fs */
9 };
10
11 #endif
12