]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/squashfs/squashfs.h
xps: Transmit Packet Steering
[net-next-2.6.git] / fs / squashfs / squashfs.h
CommitLineData
ffae2cd7
PL
1/*
2 * Squashfs - a compressed read only filesystem for Linux
3 *
4 * Copyright (c) 2002, 2003, 2004, 2005, 2006, 2007, 2008
5 * Phillip Lougher <phillip@lougher.demon.co.uk>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2,
10 * or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 *
21 * squashfs.h
22 */
23
24#define TRACE(s, args...) pr_debug("SQUASHFS: "s, ## args)
25
26#define ERROR(s, args...) pr_err("SQUASHFS error: "s, ## args)
27
28#define WARNING(s, args...) pr_warning("SQUASHFS: "s, ## args)
29
30static inline struct squashfs_inode_info *squashfs_i(struct inode *inode)
31{
32 return list_entry(inode, struct squashfs_inode_info, vfs_inode);
33}
34
35/* block.c */
36extern int squashfs_read_data(struct super_block *, void **, u64, int, u64 *,
118e1ef6 37 int, int);
ffae2cd7
PL
38
39/* cache.c */
40extern struct squashfs_cache *squashfs_cache_init(char *, int, int);
41extern void squashfs_cache_delete(struct squashfs_cache *);
42extern struct squashfs_cache_entry *squashfs_cache_get(struct super_block *,
43 struct squashfs_cache *, u64, int);
44extern void squashfs_cache_put(struct squashfs_cache_entry *);
45extern int squashfs_copy_data(void *, struct squashfs_cache_entry *, int, int);
46extern int squashfs_read_metadata(struct super_block *, void *, u64 *,
47 int *, int);
48extern struct squashfs_cache_entry *squashfs_get_fragment(struct super_block *,
49 u64, int);
50extern struct squashfs_cache_entry *squashfs_get_datablock(struct super_block *,
51 u64, int);
52extern int squashfs_read_table(struct super_block *, void *, u64, int);
53
4c0f0bb2
PL
54/* decompressor.c */
55extern const struct squashfs_decompressor *squashfs_lookup_decompressor(int);
56
ffae2cd7
PL
57/* export.c */
58extern __le64 *squashfs_read_inode_lookup_table(struct super_block *, u64,
59 unsigned int);
60
61/* fragment.c */
62extern int squashfs_frag_lookup(struct super_block *, unsigned int, u64 *);
63extern __le64 *squashfs_read_fragment_index_table(struct super_block *,
64 u64, unsigned int);
65
66/* id.c */
67extern int squashfs_get_id(struct super_block *, unsigned int, unsigned int *);
68extern __le64 *squashfs_read_id_index_table(struct super_block *, u64,
69 unsigned short);
70
71/* inode.c */
72extern struct inode *squashfs_iget(struct super_block *, long long,
73 unsigned int);
74extern int squashfs_read_inode(struct inode *, long long);
75
67f66cc6
PL
76/* xattr.c */
77extern ssize_t squashfs_listxattr(struct dentry *, char *, size_t);
78
ffae2cd7 79/*
67f66cc6 80 * Inodes, files, decompressor and xattr operations
ffae2cd7
PL
81 */
82
83/* dir.c */
84extern const struct file_operations squashfs_dir_ops;
85
86/* export.c */
87extern const struct export_operations squashfs_export_ops;
88
89/* file.c */
90extern const struct address_space_operations squashfs_aops;
91
67f66cc6
PL
92/* inode.c */
93extern const struct inode_operations squashfs_inode_ops;
94
ffae2cd7
PL
95/* namei.c */
96extern const struct inode_operations squashfs_dir_inode_ops;
97
98/* symlink.c */
99extern const struct address_space_operations squashfs_symlink_aops;
67f66cc6
PL
100extern const struct inode_operations squashfs_symlink_inode_ops;
101
102/* xattr.c */
f6db25a8 103extern const struct xattr_handler *squashfs_xattr_handlers[];
4c0f0bb2
PL
104
105/* zlib_wrapper.c */
106extern const struct squashfs_decompressor squashfs_zlib_comp_ops;
79cb8ced 107
4f86b8fd 108/* lzo_wrapper.c */
79cb8ced 109extern const struct squashfs_decompressor squashfs_lzo_comp_ops;