Lines Matching refs:msblk
62 void *squashfs_decompressor_create(struct squashfs_sb_info *msblk, in squashfs_decompressor_create() argument
88 decomp_strm->stream = msblk->decompressor->init(msblk, in squashfs_decompressor_create()
106 void squashfs_decompressor_destroy(struct squashfs_sb_info *msblk) in squashfs_decompressor_destroy() argument
108 struct squashfs_stream *stream = msblk->stream; in squashfs_decompressor_destroy()
116 msblk->decompressor->free(decomp_strm->stream); in squashfs_decompressor_destroy()
127 static struct decomp_stream *get_decomp_stream(struct squashfs_sb_info *msblk, in get_decomp_stream() argument
156 decomp_strm->stream = msblk->decompressor->init(msblk, in get_decomp_stream()
183 int squashfs_decompress(struct squashfs_sb_info *msblk, struct bio *bio, in squashfs_decompress() argument
188 struct squashfs_stream *stream = msblk->stream; in squashfs_decompress()
189 struct decomp_stream *decomp_stream = get_decomp_stream(msblk, stream); in squashfs_decompress()
190 res = msblk->decompressor->decompress(msblk, decomp_stream->stream, in squashfs_decompress()
195 msblk->decompressor->name); in squashfs_decompress()