diff options
author | Al Viro <viro@www.linux.org.uk> | 2005-04-25 21:32:12 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-25 21:32:12 -0400 |
commit | 94f2f715771d0aa5554451d1e2a920f11b8be3fe (patch) | |
tree | 07ebba8f6bbb91627c64c1f27e91e916dfd70756 /include/linux/iso_fs_i.h | |
parent | 7366d36cb967d7a3ac324c789a8b718e61d01b31 (diff) |
[PATCH] isofs includes sanitized
fs/isofs includes trimmed down to something resembling sanity.
Kernel-only parts of linux/iso_fs.h and entire linux/iso_fs_{sb,i}.h
moved to fs/isofs/isofs.h.
A lot of useless #include in fs/isofs/*.c killed.
Signed-off-by: Al Viro <viro@parcelfarce.linux.theplanet.co.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/iso_fs_i.h')
-rw-r--r-- | include/linux/iso_fs_i.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/linux/iso_fs_i.h b/include/linux/iso_fs_i.h deleted file mode 100644 index 59065e939ea..00000000000 --- a/include/linux/iso_fs_i.h +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
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 long i_iget5_block; | ||
17 | unsigned long i_iget5_offset; | ||
18 | unsigned int i_first_extent; | ||
19 | unsigned char i_file_format; | ||
20 | unsigned char i_format_parm[3]; | ||
21 | unsigned long i_next_section_block; | ||
22 | unsigned long i_next_section_offset; | ||
23 | off_t i_section_size; | ||
24 | struct inode vfs_inode; | ||
25 | }; | ||
26 | |||
27 | #endif | ||