diff options
Diffstat (limited to 'fs/hfsplus/hfsplus_fs.h')
-rw-r--r-- | fs/hfsplus/hfsplus_fs.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/fs/hfsplus/hfsplus_fs.h b/fs/hfsplus/hfsplus_fs.h index f07aa640c27d..276ddb0fd0fd 100644 --- a/fs/hfsplus/hfsplus_fs.h +++ b/fs/hfsplus/hfsplus_fs.h | |||
@@ -107,8 +107,8 @@ struct hfsplus_vh; | |||
107 | struct hfs_btree; | 107 | struct hfs_btree; |
108 | 108 | ||
109 | struct hfsplus_sb_info { | 109 | struct hfsplus_sb_info { |
110 | struct buffer_head *s_vhbh; | ||
111 | struct hfsplus_vh *s_vhdr; | 110 | struct hfsplus_vh *s_vhdr; |
111 | struct hfsplus_vh *s_backup_vhdr; | ||
112 | struct hfs_btree *ext_tree; | 112 | struct hfs_btree *ext_tree; |
113 | struct hfs_btree *cat_tree; | 113 | struct hfs_btree *cat_tree; |
114 | struct hfs_btree *attr_tree; | 114 | struct hfs_btree *attr_tree; |
@@ -118,7 +118,8 @@ struct hfsplus_sb_info { | |||
118 | 118 | ||
119 | /* Runtime variables */ | 119 | /* Runtime variables */ |
120 | u32 blockoffset; | 120 | u32 blockoffset; |
121 | u32 sect_count; | 121 | sector_t part_start; |
122 | sector_t sect_count; | ||
122 | int fs_shift; | 123 | int fs_shift; |
123 | 124 | ||
124 | /* immutable data from the volume header */ | 125 | /* immutable data from the volume header */ |
@@ -385,8 +386,9 @@ int hfsplus_compare_dentry(struct dentry *dentry, struct qstr *s1, struct qstr * | |||
385 | 386 | ||
386 | /* wrapper.c */ | 387 | /* wrapper.c */ |
387 | int hfsplus_read_wrapper(struct super_block *); | 388 | int hfsplus_read_wrapper(struct super_block *); |
388 | |||
389 | int hfs_part_find(struct super_block *, sector_t *, sector_t *); | 389 | int hfs_part_find(struct super_block *, sector_t *, sector_t *); |
390 | int hfsplus_submit_bio(struct block_device *bdev, sector_t sector, | ||
391 | void *data, int rw); | ||
390 | 392 | ||
391 | /* access macros */ | 393 | /* access macros */ |
392 | static inline struct hfsplus_sb_info *HFSPLUS_SB(struct super_block *sb) | 394 | static inline struct hfsplus_sb_info *HFSPLUS_SB(struct super_block *sb) |