mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
squashfs: extend "page actor" to handle missing pages
Patch series "Squashfs: handle missing pages decompressing into page cache". This patchset enables Squashfs to handle missing pages when directly decompressing datablocks into the page cache. Previously if the full set of pages needed was not available, Squashfs would have to fall back to using an intermediate buffer (the older method), which is slower, involving a memcopy, and it introduces contention on a shared buffer. The first patch extends the "page actor" code to handle missing pages. The second patch updates Squashfs_readpage_block() to use the new functionality, and removes the code that falls back to using an intermediate buffer. This patchset is independent of the readahead work, and it is standalone. It can be merged on its own. But the readahead patch for efficiency also needs this patch-set. This patch (of 2): This patch extends the "page actor" code to handle missing pages. Previously if the full set of pages needed to decompress a Squashfs datablock was unavailable, this would cause decompression to fail on the missing pages. In this case direct decompression into the page cache could not be achieved and the code would fall back to using the older intermediate buffer method. With this patch, direct decompression into the page cache can be achieved with missing pages. For "multi-shot" decompressors (zlib, xz, zstd), the page actor will allocate a temporary buffer which is passed to the decompressor, and then freed by the page actor. For "single shot" decompressors (lz4, lzo) which decompress into a contiguous "bounce buffer", and which is then copied into the page cache, it would be pointless to allocate a temporary buffer, memcpy into it, and then free it. For these decompressors -ENOMEM is returned, which signifies that the memcpy for that page should be skipped. This also happens if the data block is uncompressed. Link: https://lkml.kernel.org/r/20220611032133.5743-1-phillip@squashfs.org.uk Link: https://lkml.kernel.org/r/20220611032133.5743-2-phillip@squashfs.org.uk Signed-off-by: Phillip Lougher <phillip@squashfs.org.uk> Cc: Matthew Wilcox (Oracle) <willy@infradead.org> Cc: Hsin-Yi Wang <hsinyi@chromium.org> Cc: Xiongwei Song <Xiongwei.Song@windriver.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
parent
0aed4724a8
commit
f268eedddf
@ -34,12 +34,15 @@ static int copy_bio_to_actor(struct bio *bio,
|
|||||||
struct squashfs_page_actor *actor,
|
struct squashfs_page_actor *actor,
|
||||||
int offset, int req_length)
|
int offset, int req_length)
|
||||||
{
|
{
|
||||||
void *actor_addr = squashfs_first_page(actor);
|
void *actor_addr;
|
||||||
struct bvec_iter_all iter_all = {};
|
struct bvec_iter_all iter_all = {};
|
||||||
struct bio_vec *bvec = bvec_init_iter_all(&iter_all);
|
struct bio_vec *bvec = bvec_init_iter_all(&iter_all);
|
||||||
int copied_bytes = 0;
|
int copied_bytes = 0;
|
||||||
int actor_offset = 0;
|
int actor_offset = 0;
|
||||||
|
|
||||||
|
squashfs_actor_nobuff(actor);
|
||||||
|
actor_addr = squashfs_first_page(actor);
|
||||||
|
|
||||||
if (WARN_ON_ONCE(!bio_next_segment(bio, &iter_all)))
|
if (WARN_ON_ONCE(!bio_next_segment(bio, &iter_all)))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
@ -49,8 +52,9 @@ static int copy_bio_to_actor(struct bio *bio,
|
|||||||
|
|
||||||
bytes_to_copy = min_t(int, bytes_to_copy,
|
bytes_to_copy = min_t(int, bytes_to_copy,
|
||||||
req_length - copied_bytes);
|
req_length - copied_bytes);
|
||||||
memcpy(actor_addr + actor_offset, bvec_virt(bvec) + offset,
|
if (!IS_ERR(actor_addr))
|
||||||
bytes_to_copy);
|
memcpy(actor_addr + actor_offset, bvec_virt(bvec) +
|
||||||
|
offset, bytes_to_copy);
|
||||||
|
|
||||||
actor_offset += bytes_to_copy;
|
actor_offset += bytes_to_copy;
|
||||||
copied_bytes += bytes_to_copy;
|
copied_bytes += bytes_to_copy;
|
||||||
|
@ -20,6 +20,7 @@ struct squashfs_decompressor {
|
|||||||
struct bio *, int, int, struct squashfs_page_actor *);
|
struct bio *, int, int, struct squashfs_page_actor *);
|
||||||
int id;
|
int id;
|
||||||
char *name;
|
char *name;
|
||||||
|
int alloc_buffer;
|
||||||
int supported;
|
int supported;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -47,14 +47,6 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
|
|||||||
if (page == NULL)
|
if (page == NULL)
|
||||||
return res;
|
return res;
|
||||||
|
|
||||||
/*
|
|
||||||
* Create a "page actor" which will kmap and kunmap the
|
|
||||||
* page cache pages appropriately within the decompressor
|
|
||||||
*/
|
|
||||||
actor = squashfs_page_actor_init_special(page, pages, 0);
|
|
||||||
if (actor == NULL)
|
|
||||||
goto out;
|
|
||||||
|
|
||||||
/* Try to grab all the pages covered by the Squashfs block */
|
/* Try to grab all the pages covered by the Squashfs block */
|
||||||
for (missing_pages = 0, i = 0, n = start_index; i < pages; i++, n++) {
|
for (missing_pages = 0, i = 0, n = start_index; i < pages; i++, n++) {
|
||||||
page[i] = (n == target_page->index) ? target_page :
|
page[i] = (n == target_page->index) ? target_page :
|
||||||
@ -89,8 +81,19 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
|
|||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Create a "page actor" which will kmap and kunmap the
|
||||||
|
* page cache pages appropriately within the decompressor
|
||||||
|
*/
|
||||||
|
actor = squashfs_page_actor_init_special(msblk, page, pages, 0);
|
||||||
|
if (actor == NULL)
|
||||||
|
goto out;
|
||||||
|
|
||||||
/* Decompress directly into the page cache buffers */
|
/* Decompress directly into the page cache buffers */
|
||||||
res = squashfs_read_data(inode->i_sb, block, bsize, NULL, actor);
|
res = squashfs_read_data(inode->i_sb, block, bsize, NULL, actor);
|
||||||
|
|
||||||
|
kfree(actor);
|
||||||
|
|
||||||
if (res < 0)
|
if (res < 0)
|
||||||
goto mark_errored;
|
goto mark_errored;
|
||||||
|
|
||||||
@ -116,7 +119,6 @@ int squashfs_readpage_block(struct page *target_page, u64 block, int bsize,
|
|||||||
put_page(page[i]);
|
put_page(page[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
kfree(actor);
|
|
||||||
kfree(page);
|
kfree(page);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -135,7 +137,6 @@ mark_errored:
|
|||||||
}
|
}
|
||||||
|
|
||||||
out:
|
out:
|
||||||
kfree(actor);
|
|
||||||
kfree(page);
|
kfree(page);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
@ -119,10 +119,12 @@ static int lz4_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
buff = stream->output;
|
buff = stream->output;
|
||||||
while (data) {
|
while (data) {
|
||||||
if (bytes <= PAGE_SIZE) {
|
if (bytes <= PAGE_SIZE) {
|
||||||
memcpy(data, buff, bytes);
|
if (!IS_ERR(data))
|
||||||
|
memcpy(data, buff, bytes);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
memcpy(data, buff, PAGE_SIZE);
|
if (!IS_ERR(data))
|
||||||
|
memcpy(data, buff, PAGE_SIZE);
|
||||||
buff += PAGE_SIZE;
|
buff += PAGE_SIZE;
|
||||||
bytes -= PAGE_SIZE;
|
bytes -= PAGE_SIZE;
|
||||||
data = squashfs_next_page(output);
|
data = squashfs_next_page(output);
|
||||||
@ -139,5 +141,6 @@ const struct squashfs_decompressor squashfs_lz4_comp_ops = {
|
|||||||
.decompress = lz4_uncompress,
|
.decompress = lz4_uncompress,
|
||||||
.id = LZ4_COMPRESSION,
|
.id = LZ4_COMPRESSION,
|
||||||
.name = "lz4",
|
.name = "lz4",
|
||||||
|
.alloc_buffer = 0,
|
||||||
.supported = 1
|
.supported = 1
|
||||||
};
|
};
|
||||||
|
@ -93,10 +93,12 @@ static int lzo_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
buff = stream->output;
|
buff = stream->output;
|
||||||
while (data) {
|
while (data) {
|
||||||
if (bytes <= PAGE_SIZE) {
|
if (bytes <= PAGE_SIZE) {
|
||||||
memcpy(data, buff, bytes);
|
if (!IS_ERR(data))
|
||||||
|
memcpy(data, buff, bytes);
|
||||||
break;
|
break;
|
||||||
} else {
|
} else {
|
||||||
memcpy(data, buff, PAGE_SIZE);
|
if (!IS_ERR(data))
|
||||||
|
memcpy(data, buff, PAGE_SIZE);
|
||||||
buff += PAGE_SIZE;
|
buff += PAGE_SIZE;
|
||||||
bytes -= PAGE_SIZE;
|
bytes -= PAGE_SIZE;
|
||||||
data = squashfs_next_page(output);
|
data = squashfs_next_page(output);
|
||||||
@ -116,5 +118,6 @@ const struct squashfs_decompressor squashfs_lzo_comp_ops = {
|
|||||||
.decompress = lzo_uncompress,
|
.decompress = lzo_uncompress,
|
||||||
.id = LZO_COMPRESSION,
|
.id = LZO_COMPRESSION,
|
||||||
.name = "lzo",
|
.name = "lzo",
|
||||||
|
.alloc_buffer = 0,
|
||||||
.supported = 1
|
.supported = 1
|
||||||
};
|
};
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/slab.h>
|
#include <linux/slab.h>
|
||||||
#include <linux/pagemap.h>
|
#include <linux/pagemap.h>
|
||||||
|
#include "squashfs_fs_sb.h"
|
||||||
|
#include "decompressor.h"
|
||||||
#include "page_actor.h"
|
#include "page_actor.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -57,29 +59,62 @@ struct squashfs_page_actor *squashfs_page_actor_init(void **buffer,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Implementation of page_actor for decompressing directly into page cache. */
|
/* Implementation of page_actor for decompressing directly into page cache. */
|
||||||
|
static void *handle_next_page(struct squashfs_page_actor *actor)
|
||||||
|
{
|
||||||
|
int max_pages = (actor->length + PAGE_SIZE - 1) >> PAGE_SHIFT;
|
||||||
|
|
||||||
|
if (actor->returned_pages == max_pages)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
if ((actor->next_page == actor->pages) ||
|
||||||
|
(actor->next_index != actor->page[actor->next_page]->index)) {
|
||||||
|
if (actor->alloc_buffer) {
|
||||||
|
void *tmp_buffer = kmalloc(PAGE_SIZE, GFP_KERNEL);
|
||||||
|
|
||||||
|
if (tmp_buffer) {
|
||||||
|
actor->tmp_buffer = tmp_buffer;
|
||||||
|
actor->next_index++;
|
||||||
|
actor->returned_pages++;
|
||||||
|
return tmp_buffer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
actor->next_index++;
|
||||||
|
actor->returned_pages++;
|
||||||
|
return ERR_PTR(-ENOMEM);
|
||||||
|
}
|
||||||
|
|
||||||
|
actor->next_index++;
|
||||||
|
actor->returned_pages++;
|
||||||
|
return actor->pageaddr = kmap_local_page(actor->page[actor->next_page++]);
|
||||||
|
}
|
||||||
|
|
||||||
static void *direct_first_page(struct squashfs_page_actor *actor)
|
static void *direct_first_page(struct squashfs_page_actor *actor)
|
||||||
{
|
{
|
||||||
actor->next_page = 1;
|
return handle_next_page(actor);
|
||||||
return actor->pageaddr = kmap_atomic(actor->page[0]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void *direct_next_page(struct squashfs_page_actor *actor)
|
static void *direct_next_page(struct squashfs_page_actor *actor)
|
||||||
{
|
{
|
||||||
if (actor->pageaddr)
|
if (actor->pageaddr)
|
||||||
kunmap_atomic(actor->pageaddr);
|
kunmap_local(actor->pageaddr);
|
||||||
|
|
||||||
return actor->pageaddr = actor->next_page == actor->pages ? NULL :
|
kfree(actor->tmp_buffer);
|
||||||
kmap_atomic(actor->page[actor->next_page++]);
|
actor->pageaddr = actor->tmp_buffer = NULL;
|
||||||
|
|
||||||
|
return handle_next_page(actor);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void direct_finish_page(struct squashfs_page_actor *actor)
|
static void direct_finish_page(struct squashfs_page_actor *actor)
|
||||||
{
|
{
|
||||||
if (actor->pageaddr)
|
if (actor->pageaddr)
|
||||||
kunmap_atomic(actor->pageaddr);
|
kunmap_local(actor->pageaddr);
|
||||||
|
|
||||||
|
kfree(actor->tmp_buffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
struct squashfs_page_actor *squashfs_page_actor_init_special(struct page **page,
|
struct squashfs_page_actor *squashfs_page_actor_init_special(struct squashfs_sb_info *msblk,
|
||||||
int pages, int length)
|
struct page **page, int pages, int length)
|
||||||
{
|
{
|
||||||
struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL);
|
struct squashfs_page_actor *actor = kmalloc(sizeof(*actor), GFP_KERNEL);
|
||||||
|
|
||||||
@ -90,7 +125,11 @@ struct squashfs_page_actor *squashfs_page_actor_init_special(struct page **page,
|
|||||||
actor->page = page;
|
actor->page = page;
|
||||||
actor->pages = pages;
|
actor->pages = pages;
|
||||||
actor->next_page = 0;
|
actor->next_page = 0;
|
||||||
|
actor->returned_pages = 0;
|
||||||
|
actor->next_index = page[0]->index & ~((1 << (msblk->block_log - PAGE_SHIFT)) - 1);
|
||||||
actor->pageaddr = NULL;
|
actor->pageaddr = NULL;
|
||||||
|
actor->tmp_buffer = NULL;
|
||||||
|
actor->alloc_buffer = msblk->decompressor->alloc_buffer;
|
||||||
actor->squashfs_first_page = direct_first_page;
|
actor->squashfs_first_page = direct_first_page;
|
||||||
actor->squashfs_next_page = direct_next_page;
|
actor->squashfs_next_page = direct_next_page;
|
||||||
actor->squashfs_finish_page = direct_finish_page;
|
actor->squashfs_finish_page = direct_finish_page;
|
||||||
|
@ -45,6 +45,11 @@ static inline void squashfs_finish_page(struct squashfs_page_actor *actor)
|
|||||||
{
|
{
|
||||||
/* empty */
|
/* empty */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor)
|
||||||
|
{
|
||||||
|
/* empty */
|
||||||
|
}
|
||||||
#else
|
#else
|
||||||
struct squashfs_page_actor {
|
struct squashfs_page_actor {
|
||||||
union {
|
union {
|
||||||
@ -52,17 +57,23 @@ struct squashfs_page_actor {
|
|||||||
struct page **page;
|
struct page **page;
|
||||||
};
|
};
|
||||||
void *pageaddr;
|
void *pageaddr;
|
||||||
|
void *tmp_buffer;
|
||||||
void *(*squashfs_first_page)(struct squashfs_page_actor *);
|
void *(*squashfs_first_page)(struct squashfs_page_actor *);
|
||||||
void *(*squashfs_next_page)(struct squashfs_page_actor *);
|
void *(*squashfs_next_page)(struct squashfs_page_actor *);
|
||||||
void (*squashfs_finish_page)(struct squashfs_page_actor *);
|
void (*squashfs_finish_page)(struct squashfs_page_actor *);
|
||||||
int pages;
|
int pages;
|
||||||
int length;
|
int length;
|
||||||
int next_page;
|
int next_page;
|
||||||
|
int alloc_buffer;
|
||||||
|
int returned_pages;
|
||||||
|
pgoff_t next_index;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern struct squashfs_page_actor *squashfs_page_actor_init(void **, int, int);
|
extern struct squashfs_page_actor *squashfs_page_actor_init(void **buffer,
|
||||||
extern struct squashfs_page_actor *squashfs_page_actor_init_special(struct page
|
int pages, int length);
|
||||||
**, int, int);
|
extern struct squashfs_page_actor *squashfs_page_actor_init_special(
|
||||||
|
struct squashfs_sb_info *msblk,
|
||||||
|
struct page **page, int pages, int length);
|
||||||
static inline void *squashfs_first_page(struct squashfs_page_actor *actor)
|
static inline void *squashfs_first_page(struct squashfs_page_actor *actor)
|
||||||
{
|
{
|
||||||
return actor->squashfs_first_page(actor);
|
return actor->squashfs_first_page(actor);
|
||||||
@ -75,5 +86,9 @@ static inline void squashfs_finish_page(struct squashfs_page_actor *actor)
|
|||||||
{
|
{
|
||||||
actor->squashfs_finish_page(actor);
|
actor->squashfs_finish_page(actor);
|
||||||
}
|
}
|
||||||
|
static inline void squashfs_actor_nobuff(struct squashfs_page_actor *actor)
|
||||||
|
{
|
||||||
|
actor->alloc_buffer = 0;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -131,6 +131,10 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
stream->buf.out_pos = 0;
|
stream->buf.out_pos = 0;
|
||||||
stream->buf.out_size = PAGE_SIZE;
|
stream->buf.out_size = PAGE_SIZE;
|
||||||
stream->buf.out = squashfs_first_page(output);
|
stream->buf.out = squashfs_first_page(output);
|
||||||
|
if (IS_ERR(stream->buf.out)) {
|
||||||
|
error = PTR_ERR(stream->buf.out);
|
||||||
|
goto finish;
|
||||||
|
}
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
enum xz_ret xz_err;
|
enum xz_ret xz_err;
|
||||||
@ -156,7 +160,10 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
|
|
||||||
if (stream->buf.out_pos == stream->buf.out_size) {
|
if (stream->buf.out_pos == stream->buf.out_size) {
|
||||||
stream->buf.out = squashfs_next_page(output);
|
stream->buf.out = squashfs_next_page(output);
|
||||||
if (stream->buf.out != NULL) {
|
if (IS_ERR(stream->buf.out)) {
|
||||||
|
error = PTR_ERR(stream->buf.out);
|
||||||
|
break;
|
||||||
|
} else if (stream->buf.out != NULL) {
|
||||||
stream->buf.out_pos = 0;
|
stream->buf.out_pos = 0;
|
||||||
total += PAGE_SIZE;
|
total += PAGE_SIZE;
|
||||||
}
|
}
|
||||||
@ -171,6 +178,7 @@ static int squashfs_xz_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
finish:
|
||||||
squashfs_finish_page(output);
|
squashfs_finish_page(output);
|
||||||
|
|
||||||
return error ? error : total + stream->buf.out_pos;
|
return error ? error : total + stream->buf.out_pos;
|
||||||
@ -183,5 +191,6 @@ const struct squashfs_decompressor squashfs_xz_comp_ops = {
|
|||||||
.decompress = squashfs_xz_uncompress,
|
.decompress = squashfs_xz_uncompress,
|
||||||
.id = XZ_COMPRESSION,
|
.id = XZ_COMPRESSION,
|
||||||
.name = "xz",
|
.name = "xz",
|
||||||
|
.alloc_buffer = 1,
|
||||||
.supported = 1
|
.supported = 1
|
||||||
};
|
};
|
||||||
|
@ -62,6 +62,11 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
stream->next_out = squashfs_first_page(output);
|
stream->next_out = squashfs_first_page(output);
|
||||||
stream->avail_in = 0;
|
stream->avail_in = 0;
|
||||||
|
|
||||||
|
if (IS_ERR(stream->next_out)) {
|
||||||
|
error = PTR_ERR(stream->next_out);
|
||||||
|
goto finish;
|
||||||
|
}
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
int zlib_err;
|
int zlib_err;
|
||||||
|
|
||||||
@ -85,7 +90,10 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
|
|
||||||
if (stream->avail_out == 0) {
|
if (stream->avail_out == 0) {
|
||||||
stream->next_out = squashfs_next_page(output);
|
stream->next_out = squashfs_next_page(output);
|
||||||
if (stream->next_out != NULL)
|
if (IS_ERR(stream->next_out)) {
|
||||||
|
error = PTR_ERR(stream->next_out);
|
||||||
|
break;
|
||||||
|
} else if (stream->next_out != NULL)
|
||||||
stream->avail_out = PAGE_SIZE;
|
stream->avail_out = PAGE_SIZE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,6 +115,7 @@ static int zlib_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
finish:
|
||||||
squashfs_finish_page(output);
|
squashfs_finish_page(output);
|
||||||
|
|
||||||
if (!error)
|
if (!error)
|
||||||
@ -122,6 +131,7 @@ const struct squashfs_decompressor squashfs_zlib_comp_ops = {
|
|||||||
.decompress = zlib_uncompress,
|
.decompress = zlib_uncompress,
|
||||||
.id = ZLIB_COMPRESSION,
|
.id = ZLIB_COMPRESSION,
|
||||||
.name = "zlib",
|
.name = "zlib",
|
||||||
|
.alloc_buffer = 1,
|
||||||
.supported = 1
|
.supported = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -80,6 +80,10 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
|
|
||||||
out_buf.size = PAGE_SIZE;
|
out_buf.size = PAGE_SIZE;
|
||||||
out_buf.dst = squashfs_first_page(output);
|
out_buf.dst = squashfs_first_page(output);
|
||||||
|
if (IS_ERR(out_buf.dst)) {
|
||||||
|
error = PTR_ERR(out_buf.dst);
|
||||||
|
goto finish;
|
||||||
|
}
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
size_t zstd_err;
|
size_t zstd_err;
|
||||||
@ -104,7 +108,10 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
|
|
||||||
if (out_buf.pos == out_buf.size) {
|
if (out_buf.pos == out_buf.size) {
|
||||||
out_buf.dst = squashfs_next_page(output);
|
out_buf.dst = squashfs_next_page(output);
|
||||||
if (out_buf.dst == NULL) {
|
if (IS_ERR(out_buf.dst)) {
|
||||||
|
error = PTR_ERR(out_buf.dst);
|
||||||
|
break;
|
||||||
|
} else if (out_buf.dst == NULL) {
|
||||||
/* Shouldn't run out of pages
|
/* Shouldn't run out of pages
|
||||||
* before stream is done.
|
* before stream is done.
|
||||||
*/
|
*/
|
||||||
@ -129,6 +136,8 @@ static int zstd_uncompress(struct squashfs_sb_info *msblk, void *strm,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
finish:
|
||||||
|
|
||||||
squashfs_finish_page(output);
|
squashfs_finish_page(output);
|
||||||
|
|
||||||
return error ? error : total_out;
|
return error ? error : total_out;
|
||||||
@ -140,5 +149,6 @@ const struct squashfs_decompressor squashfs_zstd_comp_ops = {
|
|||||||
.decompress = zstd_uncompress,
|
.decompress = zstd_uncompress,
|
||||||
.id = ZSTD_COMPRESSION,
|
.id = ZSTD_COMPRESSION,
|
||||||
.name = "zstd",
|
.name = "zstd",
|
||||||
|
.alloc_buffer = 1,
|
||||||
.supported = 1
|
.supported = 1
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user