[PATCH] some more av7110 dvb-driver updates
[linux-2.6/history.git] / include / linux / iso_fs_i.h
blob01a1ae26bcebbb28b0fa4ab950cc54e5b695bbc6
1 #ifndef _ISO_FS_I
2 #define _ISO_FS_I
4 #include <linux/fs.h>
6 enum isofs_file_format {
7 isofs_file_normal = 0,
8 isofs_file_sparse = 1,
9 isofs_file_compressed = 2,
13 * iso fs inode data in memory
15 struct iso_inode_info {
16 unsigned int i_first_extent;
17 unsigned char i_file_format;
18 unsigned char i_format_parm[3];
19 unsigned long i_next_section_ino;
20 off_t i_section_size;
21 struct inode vfs_inode;
24 #endif