summaryrefslogtreecommitdiffstats
path: root/kexec/lzma.c
diff options
context:
space:
mode:
Diffstat (limited to 'kexec/lzma.c')
-rw-r--r--kexec/lzma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kexec/lzma.c b/kexec/lzma.c
index 2fc07e6c..56778d1d 100644
--- a/kexec/lzma.c
+++ b/kexec/lzma.c
@@ -73,7 +73,7 @@ static LZFILE *lzopen_internal(const char *path, const char *mode, int fd)
ret = lzma_alone_encoder(&lzfile->strm, &opt_lzma);
} else {
ret = lzma_auto_decoder(&lzfile->strm,
- UINT64_C(64) * 1024 * 1024, 0);
+ UINT64_C(128) * 1024 * 1024, 0);
}
if (ret != LZMA_OK) {
fclose(fp);