aboutsummaryrefslogtreecommitdiffstats
path: root/fs/squashfs/decompressor_multi.c
diff options
context:
space:
mode:
authorPhillip Lougher <phillip@squashfs.org.uk>2013-11-17 21:59:12 -0500
committerPhillip Lougher <phillip@squashfs.org.uk>2013-11-19 22:59:01 -0500
commit846b730e99518a1c9945afcb2afbe4d08a02ed80 (patch)
treec70eb16cbec15e5bfa1db80c5f18e062673331a9 /fs/squashfs/decompressor_multi.c
parentd208383d640727b70cd6689bc17e67e9b5ebf4ff (diff)
Squashfs: Generalise paging handling in the decompressors
Further generalise the decompressors by adding a page handler abstraction. This adds helpers to allow the decompressors to access and process the output buffers in an implementation independant manner. This allows different types of output buffer to be passed to the decompressors, with the implementation specific aspects handled at decompression time, but without the knowledge being held in the decompressor wrapper code. This will allow the decompressors to handle Squashfs cache buffers, and page cache pages. This patch adds the abstraction and an implementation for the caches. Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk> Reviewed-by: Minchan Kim <minchan@kernel.org>
Diffstat (limited to 'fs/squashfs/decompressor_multi.c')
-rw-r--r--fs/squashfs/decompressor_multi.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/squashfs/decompressor_multi.c b/fs/squashfs/decompressor_multi.c
index 462731db5130..ae54675a3526 100644
--- a/fs/squashfs/decompressor_multi.c
+++ b/fs/squashfs/decompressor_multi.c
@@ -183,15 +183,14 @@ wait:
183} 183}
184 184
185 185
186int squashfs_decompress(struct squashfs_sb_info *msblk, 186int squashfs_decompress(struct squashfs_sb_info *msblk, struct buffer_head **bh,
187 void **buffer, struct buffer_head **bh, int b, int offset, int length, 187 int b, int offset, int length, struct squashfs_page_actor *output)
188 int srclength, int pages)
189{ 188{
190 int res; 189 int res;
191 struct squashfs_stream *stream = msblk->stream; 190 struct squashfs_stream *stream = msblk->stream;
192 struct decomp_stream *decomp_stream = get_decomp_stream(msblk, stream); 191 struct decomp_stream *decomp_stream = get_decomp_stream(msblk, stream);
193 res = msblk->decompressor->decompress(msblk, decomp_stream->stream, 192 res = msblk->decompressor->decompress(msblk, decomp_stream->stream,
194 buffer, bh, b, offset, length, srclength, pages); 193 bh, b, offset, length, output);
195 put_decomp_stream(decomp_stream, stream); 194 put_decomp_stream(decomp_stream, stream);
196 if (res < 0) 195 if (res < 0)
197 ERROR("%s decompression failed, data probably corrupt\n", 196 ERROR("%s decompression failed, data probably corrupt\n",