ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / include / linux / iso_fs_i.h
1 #ifndef _ISO_FS_I
2 #define _ISO_FS_I
3
4 #include <linux/fs.h>
5
6 enum isofs_file_format {
7         isofs_file_normal = 0,
8         isofs_file_sparse = 1,
9         isofs_file_compressed = 2,
10 };
11         
12 /*
13  * iso fs inode data in memory
14  */
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;
22 };
23
24 #endif