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