aboutsummaryrefslogtreecommitdiffstats
path: root/fs/hfs/hfs_fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/hfs/hfs_fs.h')
-rw-r--r--fs/hfs/hfs_fs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/hfs/hfs_fs.h b/fs/hfs/hfs_fs.h
index ee2f385811c8..e799ebe71b51 100644
--- a/fs/hfs/hfs_fs.h
+++ b/fs/hfs/hfs_fs.h
@@ -178,11 +178,11 @@ extern int hfs_clear_vbm_bits(struct super_block *, u16, u16);
178extern int hfs_cat_keycmp(const btree_key *, const btree_key *); 178extern int hfs_cat_keycmp(const btree_key *, const btree_key *);
179struct hfs_find_data; 179struct hfs_find_data;
180extern int hfs_cat_find_brec(struct super_block *, u32, struct hfs_find_data *); 180extern int hfs_cat_find_brec(struct super_block *, u32, struct hfs_find_data *);
181extern int hfs_cat_create(u32, struct inode *, struct qstr *, struct inode *); 181extern int hfs_cat_create(u32, struct inode *, const struct qstr *, struct inode *);
182extern int hfs_cat_delete(u32, struct inode *, struct qstr *); 182extern int hfs_cat_delete(u32, struct inode *, const struct qstr *);
183extern int hfs_cat_move(u32, struct inode *, struct qstr *, 183extern int hfs_cat_move(u32, struct inode *, const struct qstr *,
184 struct inode *, struct qstr *); 184 struct inode *, const struct qstr *);
185extern void hfs_cat_build_key(struct super_block *, btree_key *, u32, struct qstr *); 185extern void hfs_cat_build_key(struct super_block *, btree_key *, u32, const struct qstr *);
186 186
187/* dir.c */ 187/* dir.c */
188extern const struct file_operations hfs_dir_operations; 188extern const struct file_operations hfs_dir_operations;
@@ -201,7 +201,7 @@ extern int hfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
201extern const struct address_space_operations hfs_aops; 201extern const struct address_space_operations hfs_aops;
202extern const struct address_space_operations hfs_btree_aops; 202extern const struct address_space_operations hfs_btree_aops;
203 203
204extern struct inode *hfs_new_inode(struct inode *, struct qstr *, umode_t); 204extern struct inode *hfs_new_inode(struct inode *, const struct qstr *, umode_t);
205extern void hfs_inode_write_fork(struct inode *, struct hfs_extent *, __be32 *, __be32 *); 205extern void hfs_inode_write_fork(struct inode *, struct hfs_extent *, __be32 *, __be32 *);
206extern int hfs_write_inode(struct inode *, struct writeback_control *); 206extern int hfs_write_inode(struct inode *, struct writeback_control *);
207extern int hfs_inode_setattr(struct dentry *, struct iattr *); 207extern int hfs_inode_setattr(struct dentry *, struct iattr *);
@@ -237,7 +237,7 @@ extern int hfs_compare_dentry(const struct dentry *parent, const struct dentry *
237 unsigned int len, const char *str, const struct qstr *name); 237 unsigned int len, const char *str, const struct qstr *name);
238 238
239/* trans.c */ 239/* trans.c */
240extern void hfs_asc2mac(struct super_block *, struct hfs_name *, struct qstr *); 240extern void hfs_asc2mac(struct super_block *, struct hfs_name *, const struct qstr *);
241extern int hfs_mac2asc(struct super_block *, char *, const struct hfs_name *); 241extern int hfs_mac2asc(struct super_block *, char *, const struct hfs_name *);
242 242
243/* super.c */ 243/* super.c */