mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 0/2] Add support for ZSTD-compressed kernel
@ 2017-10-10 21:22 Nick Terrell
  2017-10-10 21:22 ` [PATCH 1/2] lib: " Nick Terrell
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Nick Terrell @ 2017-10-10 21:22 UTC (permalink / raw)
  To: Nick Terrell
  Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, linux-kernel, x86,
	kernel-team, Chris Mason, Yann Collet, Rene Rebe

Hi,

This patch set adds support for a ZSTD-compressed kernel and ramdisk
images in the kernel boot process. It only integrates the support with
x86, though the first patch is generic to all architectures.

Zstandard requires slightly more memory during the kernel decompression
on x86 (192 KB vs 64 KB), and the memory usage is independent of the
window size.

Zstandard requires memory proprortional to the window size used during
compression for decompressing the ramdisk image, since streaming mode is
used. Newer versions of zstd (1.3.2+) list the window size of a file
with `zstd -lv <file>'. The absolute maximum amount of memory required
is just over 8 MB.

Thanks,
Nick Terrell

Nick Terrell (2):
  lib: Add support for ZSTD-compressed kernel
  x86: Add support for ZSTD-compressed kernel

 Documentation/x86/boot.txt        |   6 +-
 arch/x86/Kconfig                  |   1 +
 arch/x86/boot/compressed/Makefile |   5 +-
 arch/x86/boot/compressed/misc.c   |   4 +
 arch/x86/boot/header.S            |   8 +-
 arch/x86/include/asm/boot.h       |   6 +-
 include/linux/decompress/unzstd.h |  26 +++
 init/Kconfig                      |  14 +-
 lib/Kconfig                       |   4 +
 lib/Makefile                      |   1 +
 lib/decompress.c                  |   5 +
 lib/decompress_unzstd.c           | 341 ++++++++++++++++++++++++++++++++++++++
 lib/xxhash.c                      |  21 ++-
 lib/zstd/decompress.c             |   2 +
 lib/zstd/fse_decompress.c         |   9 +-
 scripts/Makefile.lib              |  15 ++
 usr/Kconfig                       |  22 +++
 17 files changed, 465 insertions(+), 25 deletions(-)
 create mode 100644 include/linux/decompress/unzstd.h
 create mode 100644 lib/decompress_unzstd.c

-- 
2.9.5

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-10-11  3:13 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-10 21:22 [PATCH 0/2] Add support for ZSTD-compressed kernel Nick Terrell
2017-10-10 21:22 ` [PATCH 1/2] lib: " Nick Terrell
2017-10-10 21:22 ` [PATCH 2/2] x86: " Nick Terrell
2017-10-10 21:55 ` [PATCH 0/2] " hpa
2017-10-10 22:40   ` Nick Terrell
2017-10-11  0:08     ` Adam Borowski
2017-10-11  2:01       ` Nick Terrell
2017-10-11  3:12         ` Adam Borowski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome