diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-02-06 17:13:45 +0300 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2023-02-06 17:13:45 +0300 |
commit | 83089c8f502e87ca74dd5f8cd460536c43318fef (patch) | |
tree | 553d2154931a04a2efe9cd59fb3986cd79406ff1 /arch/s390/boot | |
parent | 6bddf115d0baed3095339024d942d7d1b5e7e4d6 (diff) | |
parent | 7ab41c2c08a32132ba8c14624910e2fe8ce4ba4b (diff) | |
download | linux-83089c8f502e87ca74dd5f8cd460536c43318fef.tar.xz |
Merge branch 'fixes' into features
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/decompressor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/boot/decompressor.c b/arch/s390/boot/decompressor.c index 090621b98d95..d762733a0753 100644 --- a/arch/s390/boot/decompressor.c +++ b/arch/s390/boot/decompressor.c @@ -81,6 +81,6 @@ void *decompress_kernel(void) void *output = (void *)decompress_offset; __decompress(_compressed_start, _compressed_end - _compressed_start, - NULL, NULL, output, 0, NULL, error); + NULL, NULL, output, vmlinux.image_size, NULL, error); return output; } |