From: Ingo Molnar <mingo@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org,
Thomas Gleixner <tglx@linutronix.de>,
Borislav Petkov <bp@alien8.de>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
Andrew Morton <akpm@linux-foundation.org>
Subject: [GIT PULL] x86/boot changes for v5.9
Date: Mon, 3 Aug 2020 18:56:41 +0200 [thread overview]
Message-ID: <20200803165641.GA823733@gmail.com> (raw)
Linus,
Please pull the latest x86/boot git tree from:
git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86-boot-2020-08-03
# HEAD: 1ac1efa5f6950f8f126f2c1921bb699ce009ec7d Documentation: dontdiff: Add zstd compressed files
The main change in this cycle was to add support for ZSTD-compressed
kernel and initrd images.
ZSTD has a very fast decompressor, yet it compresses better than gzip.
out-of-topic modifications in x86-boot-2020-08-03:
----------------------------------------------------
.gitignore # 6f3decabaff0: .gitignore: Add ZSTD-compres
Makefile # 48f7ddf785af: init: Add support for zstd c
include/linux/decompress/unzstd.h # 4963bb2b8988: lib: Add zstd support to dec
init/Kconfig # 48f7ddf785af: init: Add support for zstd c
lib/Kconfig # 4963bb2b8988: lib: Add zstd support to dec
lib/Makefile # 4963bb2b8988: lib: Add zstd support to dec
lib/decompress.c # 4963bb2b8988: lib: Add zstd support to dec
lib/decompress_unzstd.c # 4963bb2b8988: lib: Add zstd support to dec
lib/zstd/fse_decompress.c # 6d25a633ea68: lib: Prepare zstd for preboo
lib/zstd/zstd_internal.h # 6d25a633ea68: lib: Prepare zstd for preboo
scripts/Makefile.lib # 48f7ddf785af: init: Add support for zstd c
usr/Kconfig # a30d8a39f057: usr: Add support for zstd co
usr/Makefile # a30d8a39f057: usr: Add support for zstd co
Thanks,
Ingo
------------------>
Adam Borowski (1):
.gitignore: Add ZSTD-compressed files
Nick Terrell (7):
lib: Prepare zstd for preboot environment, improve performance
lib: Add zstd support to decompress
init: Add support for zstd compressed kernel
usr: Add support for zstd compressed initramfs
x86: Bump ZO_z_extra_bytes margin for zstd
x86: Add support for ZSTD compressed kernel
Documentation: dontdiff: Add zstd compressed files
.gitignore | 1 +
Documentation/dontdiff | 1 +
Documentation/x86/boot.rst | 6 +-
Makefile | 3 +-
arch/x86/Kconfig | 1 +
arch/x86/boot/compressed/Makefile | 6 +-
arch/x86/boot/compressed/kaslr.c | 7 -
arch/x86/boot/compressed/misc.c | 4 +
arch/x86/boot/header.S | 8 +-
arch/x86/include/asm/boot.h | 11 +-
include/linux/decompress/unzstd.h | 11 ++
init/Kconfig | 15 +-
lib/Kconfig | 4 +
lib/Makefile | 1 +
lib/decompress.c | 5 +
lib/decompress_unzstd.c | 345 ++++++++++++++++++++++++++++++++++++++
lib/zstd/fse_decompress.c | 9 +-
lib/zstd/zstd_internal.h | 14 +-
scripts/Makefile.lib | 22 +++
usr/Kconfig | 20 +++
usr/Makefile | 1 +
21 files changed, 469 insertions(+), 26 deletions(-)
create mode 100644 include/linux/decompress/unzstd.h
create mode 100644 lib/decompress_unzstd.c
next reply other threads:[~2020-08-03 16:56 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-03 16:56 Ingo Molnar [this message]
2020-08-04 0:50 ` [GIT PULL] x86/boot changes for v5.9 pr-tracker-bot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200803165641.GA823733@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=bp@alien8.de \
--cc=linux-kernel@vger.kernel.org \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.