diff options
Diffstat (limited to 'fs/squashfs/squashfs.h')
-rw-r--r-- | fs/squashfs/squashfs.h | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/fs/squashfs/squashfs.h b/fs/squashfs/squashfs.h index fe2587af5512..733a17c42945 100644 --- a/fs/squashfs/squashfs.h +++ b/fs/squashfs/squashfs.h | |||
@@ -73,8 +73,11 @@ extern struct inode *squashfs_iget(struct super_block *, long long, | |||
73 | unsigned int); | 73 | unsigned int); |
74 | extern int squashfs_read_inode(struct inode *, long long); | 74 | extern int squashfs_read_inode(struct inode *, long long); |
75 | 75 | ||
76 | /* xattr.c */ | ||
77 | extern ssize_t squashfs_listxattr(struct dentry *, char *, size_t); | ||
78 | |||
76 | /* | 79 | /* |
77 | * Inodes, files and decompressor operations | 80 | * Inodes, files, decompressor and xattr operations |
78 | */ | 81 | */ |
79 | 82 | ||
80 | /* dir.c */ | 83 | /* dir.c */ |
@@ -86,11 +89,18 @@ extern const struct export_operations squashfs_export_ops; | |||
86 | /* file.c */ | 89 | /* file.c */ |
87 | extern const struct address_space_operations squashfs_aops; | 90 | extern const struct address_space_operations squashfs_aops; |
88 | 91 | ||
92 | /* inode.c */ | ||
93 | extern const struct inode_operations squashfs_inode_ops; | ||
94 | |||
89 | /* namei.c */ | 95 | /* namei.c */ |
90 | extern const struct inode_operations squashfs_dir_inode_ops; | 96 | extern const struct inode_operations squashfs_dir_inode_ops; |
91 | 97 | ||
92 | /* symlink.c */ | 98 | /* symlink.c */ |
93 | extern const struct address_space_operations squashfs_symlink_aops; | 99 | extern const struct address_space_operations squashfs_symlink_aops; |
100 | extern const struct inode_operations squashfs_symlink_inode_ops; | ||
101 | |||
102 | /* xattr.c */ | ||
103 | extern const struct xattr_handler *squashfs_xattr_handlers[]; | ||
94 | 104 | ||
95 | /* zlib_wrapper.c */ | 105 | /* zlib_wrapper.c */ |
96 | extern const struct squashfs_decompressor squashfs_zlib_comp_ops; | 106 | extern const struct squashfs_decompressor squashfs_zlib_comp_ops; |