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