This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from aeba12b26c79 Merge tag 'nfsd-6.2-1' of git://git.kernel.org/pub/scm/lin [...] new 88a309465b3f lib: zstd: clean up double word in comment. new 4f2c0a4acffb Merge branch 'main' into zstd-linus new 14e77332e746 Merge branch 'main' into zstd-next new ead3243df448 Merge branch 'main' into zstd-next new 894c792e3e24 MAINTAINERS: git://github -> https://github.com for terrelln new 7486f5c6e7b1 lib: zstd: fix repeated words in comments new 19d7df984728 lib: zstd: Fix comment typo new 4782c725c153 zstd: Move zstd-common module exports to zstd_common_module.c new 2aa14b1ab2c4 zstd: import usptream v1.5.2 new 70d822cfb782 Merge branch 'zstd-next' into zstd-linus new 158738ea7505 Merge tag 'zstd-linus-v6.2' of https://github.com/terrelln/linux new 0d2573a2b783 modpost: Join broken long printed messages new 9f8fe647797a Makefile.debug: support for -gz=zstd new 30daacc571d1 modpost: fix array_size.cocci warning new 1791360cb37f kconfig: remove unneeded variable in get_prompt_str() new 4d980fd11123 kconfig: remove const qualifier from str_get() new be5ea98983ef kconfig: remove redundant (void *) cast in search_conf() new f8f4dc7685c7 scripts/jobserver-exec: parse the last --jobserver-auth= option new 5724ac5589ad kbuild: deb-pkg: get rid of |flex:native workaround from B [...] new a2430b25c318 kbuild: add kbuild-file macro new 598afa050403 kbuild: warn objects shared among multiple modules new 8818039f959b kbuild: add ability to make source rpm buildable using koji new 248043299bf6 modpost: Mark uuid_le type to be suitable only for MEI new bd328def2f98 firmware_loader: remove #include <generated/utsrelease.h> new 9edb4fd3d70a init/version.c: remove #include <generated/utsrelease.h> new 4bf73588165b kbuild: Port silent mode detection to future gnu make. new efa80b028c7a kbuild: move -Werror from KBUILD_CFLAGS to KBUILD_CPPFLAGS new 80b6093b55e3 kbuild: add -Wundef to KBUILD_CPPFLAGS for W=1 builds new e4412739472b Documentation: raise minimum supported version of binutils [...] new fccb3d3eda8d kbuild: add test-{ge,gt,le,lt} macros new a5db80c65dbf kbuild: do not sort after reading modules.order new 6768fa4bcb6c kbuild: add read-file macro new 3122c84409d5 kconfig: refactor Makefile to reduce process forks new 875ef1a57f32 kbuild: use .NOTINTERMEDIATE for future GNU Make versions new f65a486821cf kbuild: change module.order to list *.o instead of *.ko new 3d57e1b7b1d4 kbuild: refactor the prerequisites of the modpost rule new 87d599fc3955 kbuild: ensure Make >= 3.82 is used new 0d24f1b7cc65 padata: Mark padata_work_init() as __ref new 19331e84c387 modpost: Include '.text.*' in TEXT_SECTIONS new 731c4eac848f buildtar: fix tarballs with EFI_ZBOOT enabled new 6feb57c2fd7c Merge tag 'kbuild-v6.2' of git://git.kernel.org/pub/scm/li [...]
The 41 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/process/changes.rst | 4 +- MAINTAINERS | 2 +- Makefile | 26 +- arch/riscv/Makefile | 2 +- arch/x86/Makefile | 2 +- drivers/base/firmware_loader/firmware.h | 2 - include/linux/zstd_lib.h | 479 +++--- init/version.c | 1 - kernel/padata.c | 12 +- lib/Kconfig.debug | 29 +- lib/zstd/Makefile | 1 + lib/zstd/common/bitstream.h | 9 + lib/zstd/common/compiler.h | 67 +- lib/zstd/common/entropy_common.c | 11 +- lib/zstd/common/error_private.h | 81 +- lib/zstd/common/fse.h | 3 +- lib/zstd/common/fse_decompress.c | 2 +- lib/zstd/common/huf.h | 46 +- lib/zstd/common/mem.h | 2 + lib/zstd/common/portability_macros.h | 93 ++ lib/zstd/common/zstd_common.c | 10 - lib/zstd/common/zstd_internal.h | 175 +-- lib/zstd/compress/clevels.h | 132 ++ lib/zstd/compress/fse_compress.c | 83 +- lib/zstd/compress/huf_compress.c | 644 ++++++-- lib/zstd/compress/zstd_compress.c | 2000 ++++++++++++++++++------ lib/zstd/compress/zstd_compress_internal.h | 375 ++++- lib/zstd/compress/zstd_compress_literals.c | 9 +- lib/zstd/compress/zstd_compress_literals.h | 4 +- lib/zstd/compress/zstd_compress_sequences.c | 31 +- lib/zstd/compress/zstd_compress_superblock.c | 295 +--- lib/zstd/compress/zstd_cwksp.h | 225 ++- lib/zstd/compress/zstd_double_fast.c | 413 +++-- lib/zstd/compress/zstd_fast.c | 441 ++++-- lib/zstd/compress/zstd_lazy.c | 1352 ++++++++++++---- lib/zstd/compress/zstd_lazy.h | 38 + lib/zstd/compress/zstd_ldm.c | 76 +- lib/zstd/compress/zstd_ldm.h | 1 + lib/zstd/compress/zstd_ldm_geartab.h | 5 +- lib/zstd/compress/zstd_opt.c | 402 +++-- lib/zstd/decompress/huf_decompress.c | 912 ++++++++--- lib/zstd/decompress/zstd_decompress.c | 80 +- lib/zstd/decompress/zstd_decompress_block.c | 1022 +++++++++--- lib/zstd/decompress/zstd_decompress_block.h | 10 +- lib/zstd/decompress/zstd_decompress_internal.h | 38 +- lib/zstd/decompress_sources.h | 6 + lib/zstd/zstd_common_module.c | 32 + lib/zstd/zstd_compress_module.c | 6 +- scripts/Kbuild.include | 48 +- scripts/Makefile.asm-generic | 6 +- scripts/Makefile.build | 14 +- scripts/Makefile.clean | 5 +- scripts/Makefile.compiler | 4 +- scripts/Makefile.debug | 6 +- scripts/Makefile.dtbinst | 2 +- scripts/Makefile.extrawarn | 1 + scripts/Makefile.modfinal | 8 +- scripts/Makefile.modinst | 4 +- scripts/Makefile.modpost | 41 +- scripts/Makefile.package | 10 + scripts/clang-tools/gen_compile_commands.py | 8 +- scripts/gen_autoksyms.sh | 2 +- scripts/jobserver-exec | 4 +- scripts/kconfig/.gitignore | 4 +- scripts/kconfig/Makefile | 45 +- scripts/kconfig/gconf-cfg.sh | 7 +- scripts/kconfig/lkc.h | 2 +- scripts/kconfig/mconf-cfg.sh | 25 +- scripts/kconfig/mconf.c | 5 +- scripts/kconfig/menu.c | 4 +- scripts/kconfig/nconf-cfg.sh | 23 +- scripts/kconfig/qconf-cfg.sh | 10 +- scripts/kconfig/util.c | 2 +- scripts/min-tool-version.sh | 2 +- scripts/mod/file2alias.c | 30 +- scripts/mod/modpost.c | 23 +- scripts/mod/sumversion.c | 4 +- scripts/modules-check.sh | 2 +- scripts/package/buildtar | 2 +- scripts/package/mkdebian | 2 +- scripts/package/mkspec | 7 + scripts/remove-stale-files | 2 + 82 files changed, 7275 insertions(+), 2780 deletions(-) create mode 100644 lib/zstd/common/portability_macros.h create mode 100644 lib/zstd/compress/clevels.h create mode 100644 lib/zstd/zstd_common_module.c