Lines Matching refs:msblk
26 void *squashfs_decompressor_create(struct squashfs_sb_info *msblk, in squashfs_decompressor_create() argument
39 stream->stream = msblk->decompressor->init(msblk, comp_opts); in squashfs_decompressor_create()
53 msblk->decompressor->free(stream->stream); in squashfs_decompressor_create()
59 void squashfs_decompressor_destroy(struct squashfs_sb_info *msblk) in squashfs_decompressor_destroy() argument
62 (struct squashfs_stream __percpu *) msblk->stream; in squashfs_decompressor_destroy()
66 if (msblk->stream) { in squashfs_decompressor_destroy()
69 msblk->decompressor->free(stream->stream); in squashfs_decompressor_destroy()
75 int squashfs_decompress(struct squashfs_sb_info *msblk, struct buffer_head **bh, in squashfs_decompress() argument
79 (struct squashfs_stream __percpu *) msblk->stream; in squashfs_decompress()
81 int res = msblk->decompressor->decompress(msblk, stream->stream, bh, b, in squashfs_decompress()
87 msblk->decompressor->name); in squashfs_decompress()