Lines Matching refs:msblk
28 void *squashfs_decompressor_create(struct squashfs_sb_info *msblk, in squashfs_decompressor_create() argument
41 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create()
55 msblk->decompressor->free(stream->stream); in squashfs_decompressor_create()
61 void squashfs_decompressor_destroy(struct squashfs_sb_info *msblk) in squashfs_decompressor_destroy() argument
64 (struct squashfs_stream __percpu *) msblk->stream; in squashfs_decompressor_destroy()
68 if (msblk->stream) { in squashfs_decompressor_destroy()
71 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy()
77 int squashfs_decompress(struct squashfs_sb_info *msblk, struct buffer_head **bh, in squashfs_decompress() argument
81 (struct squashfs_stream __percpu *) msblk->stream; in squashfs_decompress()
83 int res = msblk->decompressor->decompress(msblk, stream->stream, bh, b, in squashfs_decompress()
89 msblk->decompressor->name); in squashfs_decompress()