kernel-rt-5.14.0-45.rt21.45.el9
* Wed Jan 19 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-45.rt21.45.el9] - printk: Fix merge leftovers (Juri Lelli) - workqueue, kasan: avoid alloc_pages() when recording stack (Phil Auld) [2022894] - kasan: generic: introduce kasan_record_aux_stack_noalloc() (Phil Auld) [2022894] - kasan: common: provide can_alloc in kasan_save_stack() (Phil Auld) [2022894] - lib/stackdepot: introduce __stack_depot_save() (Phil Auld) [2022894] - lib/stackdepot: remove unused function argument (Phil Auld) [2022894] - lib/stackdepot: include gfp.h (Phil Auld) [2022894] - workqueue: Introduce show_one_worker_pool and show_one_workqueue. (Phil Auld) [2022894] - workqueue: make sysfs of unbound kworker cpumask more clever (Phil Auld) [2022894] - workqueue: fix state-dump console deadlock (Phil Auld) [2022894] - workqueue: Remove unused WORK_NO_COLOR (Phil Auld) [2022894] - workqueue: Assign a color to barrier work items (Phil Auld) [2022894] - workqueue: Mark barrier work with WORK_STRUCT_INACTIVE (Phil Auld) [2022894] - workqueue: Change the code of calculating work_flags in insert_wq_barrier() (Phil Auld) [2022894] - workqueue: Change arguement of pwq_dec_nr_in_flight() (Phil Auld) [2022894] - workqueue: Rename "delayed" (delayed by active management) to "inactive" (Phil Auld) [2022894] - workqueue: Replace deprecated ida_simple_*() with ida_alloc()/ida_free() (Phil Auld) [2022894] - workqueue: Fix typo in comments (Phil Auld) [2022894] - workqueue: Fix possible memory leaks in wq_numa_init() (Phil Auld) [2022894] - nvme: avoid race in shutdown namespace removal (Ewan D. Milne) [2014529] - powerpc/xmon: Dump XIVE information for online-only processors. (Steve Best) [2037642] - ipv4: make exception cache less predictible (Antoine Tenart) [2015112] {CVE-2021-20322} - [s390] s390/cio: make ccw_device_dma_* more robust (Claudio Imbrenda) [1997541] - [s390] s390/pci: add s390_iommu_aperture kernel parameter (Claudio Imbrenda) [2034134] - [s390] s390/pci: fix zpci_zdev_put() on reserve (Claudio Imbrenda) [2034132] - [s390] s390/pci: cleanup resources only if necessary (Claudio Imbrenda) [2034132] - [s390] s390/sclp: fix Secure-IPL facility detection (Claudio Imbrenda) [2034116] - Revert "[redhat] Generate a crashkernel.default for each kernel build" (Coiby Xu) [2034490] - ibmvnic: Process crqs after enabling interrupts (Diego Domingos) [2020021] - ibmvnic: delay complete() (Diego Domingos) [2020021] - ibmvnic: don't stop queue in xmit (Diego Domingos) [2019988] - bpf/selftests: disable test failing on RHEL9 (Viktor Malik) [2006315] - bpf/selftests: disable a verifier test for powerpc (Viktor Malik) [2032734] - bpf/selftests: allow disabling tests (Viktor Malik) [2036656] - kernel/crash_core: suppress unknown crashkernel parameter warning (Philipp Rudo) [2026570] - mm/vmalloc: do not adjust the search size for alignment overhead (David Hildenbrand) [2029493] - Bluetooth: fix use-after-free error in lock_sock_nested() (Gopal Tiwari) [2005691] - lib: zstd: Don't add -O3 to cflags (Neal Gompa) [2034834] - lib: zstd: Don't inline functions in zstd_opt.c (Neal Gompa) [2034834] - lib: zstd: Fix unused variable warning (Neal Gompa) [2034834] - lib: zstd: Add cast to silence clang's -Wbitwise-instead-of-logical (Neal Gompa) [2034834] - MAINTAINERS: Add maintainer entry for zstd (Neal Gompa) [2034834] - lib: zstd: Upgrade to latest upstream zstd version 1.4.10 (Neal Gompa) [2034834] - lib: zstd: Add decompress_sources.h for decompress_unzstd (Neal Gompa) [2034834] - lib: zstd: Add kernel-specific API (Neal Gompa) [2034834] Resolves: rhbz#1997541, rhbz#2002474, rhbz#2005691, rhbz#2006315, rhbz#2014529, rhbz#2015112, rhbz#2019988, rhbz#2020021, rhbz#2022894, rhbz#2026570, rhbz#2029493, rhbz#2032734, rhbz#2034116, rhbz#2034132, rhbz#2034134, rhbz#2034490, rhbz#2034834, rhbz#2036656, rhbz#2037642
This commit is contained in:
parent
4cfc2657cd
commit
9f5eb554fc
@ -12,7 +12,7 @@ RHEL_MINOR = 0
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 44
|
||||
RHEL_RELEASE = 45
|
||||
|
||||
#
|
||||
# Early y+1 numbering
|
||||
@ -44,4 +44,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.44
|
||||
RTBUILD:=.45
|
||||
|
@ -1,25 +0,0 @@
|
||||
#!/bin/bash
|
||||
kernelver=$1 && shift
|
||||
arch=$1 && shift
|
||||
rootfs=$1 && shift
|
||||
|
||||
output="${rootfs}/lib/modules/${kernelver}/crashkernel.default"
|
||||
|
||||
case $arch in
|
||||
x86_64|s390*)
|
||||
ck_cmdline="crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M"
|
||||
;;
|
||||
arm64|aarch64)
|
||||
ck_cmdline="crashkernel=2G-:448M"
|
||||
;;
|
||||
powerpc|ppc64*)
|
||||
ck_cmdline="crashkernel=2G-4G:384M,4G-16G:512M,16G-64G:1G,64G-128G:2G,128G-:4G"
|
||||
;;
|
||||
*)
|
||||
ck_cmdline=""
|
||||
;;
|
||||
esac
|
||||
|
||||
cat > "$output" <<EOF
|
||||
$ck_cmdline
|
||||
EOF
|
64
kernel.spec
64
kernel.spec
@ -85,7 +85,7 @@ Summary: The Linux kernel
|
||||
# the --with-release option overrides this setting.)
|
||||
%define debugbuildsenabled 1
|
||||
|
||||
%global distro_build 44
|
||||
%global distro_build 45
|
||||
|
||||
%if 0%{?fedora}
|
||||
%define secure_boot_arch x86_64
|
||||
@ -129,13 +129,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 44.rt21.44.el9
|
||||
%define pkgrelease 45.rt21.45.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 44.rt21.44%{?buildid}%{?dist}
|
||||
%define specrelease 45.rt21.45%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -708,7 +708,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-44.rt21.44.el9.tar.xz
|
||||
Source0: linux-5.14.0-45.rt21.45.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -826,7 +826,6 @@ Source80: generate_all_configs.sh
|
||||
Source81: process_configs.sh
|
||||
|
||||
Source82: update_scripts.sh
|
||||
Source83: generate_crashkernel_default.sh
|
||||
|
||||
Source84: mod-internal.list
|
||||
|
||||
@ -1436,8 +1435,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-44.rt21.44.el9 -c
|
||||
mv linux-5.14.0-44.rt21.44.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-45.rt21.45.el9 -c
|
||||
mv linux-5.14.0-45.rt21.45.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -2193,9 +2192,6 @@ BuildKernel() {
|
||||
# prune junk from kernel-devel
|
||||
find $RPM_BUILD_ROOT/usr/src/kernels -name ".*.cmd" -delete
|
||||
|
||||
# Generate crashkernel default config
|
||||
%{SOURCE83} "$KernelVer" "$Arch" "$RPM_BUILD_ROOT"
|
||||
|
||||
# Red Hat UEFI Secure Boot CA cert, which can be used to authenticate the kernel
|
||||
mkdir -p $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer
|
||||
install -m 0644 %{secureboot_ca_0} $RPM_BUILD_ROOT%{_datadir}/doc/kernel-keys/$KernelVer/kernel-signing-ca.cer
|
||||
@ -3032,7 +3028,6 @@ fi
|
||||
/lib/modules/%{KVERREL}%{?3:+%{3}}/source\
|
||||
/lib/modules/%{KVERREL}%{?3:+%{3}}/updates\
|
||||
/lib/modules/%{KVERREL}%{?3:+%{3}}/weak-updates\
|
||||
/lib/modules/%{KVERREL}%{?3:+%{3}}/crashkernel.default\
|
||||
%{_datadir}/doc/kernel-keys/%{KVERREL}%{?3:+%{3}}\
|
||||
%if %{1}\
|
||||
/lib/modules/%{KVERREL}%{?3:+%{3}}/vdso\
|
||||
@ -3091,6 +3086,53 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Wed Jan 19 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-45.rt21.45.el9]
|
||||
- printk: Fix merge leftovers (Juri Lelli)
|
||||
- workqueue, kasan: avoid alloc_pages() when recording stack (Phil Auld) [2022894]
|
||||
- kasan: generic: introduce kasan_record_aux_stack_noalloc() (Phil Auld) [2022894]
|
||||
- kasan: common: provide can_alloc in kasan_save_stack() (Phil Auld) [2022894]
|
||||
- lib/stackdepot: introduce __stack_depot_save() (Phil Auld) [2022894]
|
||||
- lib/stackdepot: remove unused function argument (Phil Auld) [2022894]
|
||||
- lib/stackdepot: include gfp.h (Phil Auld) [2022894]
|
||||
- workqueue: Introduce show_one_worker_pool and show_one_workqueue. (Phil Auld) [2022894]
|
||||
- workqueue: make sysfs of unbound kworker cpumask more clever (Phil Auld) [2022894]
|
||||
- workqueue: fix state-dump console deadlock (Phil Auld) [2022894]
|
||||
- workqueue: Remove unused WORK_NO_COLOR (Phil Auld) [2022894]
|
||||
- workqueue: Assign a color to barrier work items (Phil Auld) [2022894]
|
||||
- workqueue: Mark barrier work with WORK_STRUCT_INACTIVE (Phil Auld) [2022894]
|
||||
- workqueue: Change the code of calculating work_flags in insert_wq_barrier() (Phil Auld) [2022894]
|
||||
- workqueue: Change arguement of pwq_dec_nr_in_flight() (Phil Auld) [2022894]
|
||||
- workqueue: Rename "delayed" (delayed by active management) to "inactive" (Phil Auld) [2022894]
|
||||
- workqueue: Replace deprecated ida_simple_*() with ida_alloc()/ida_free() (Phil Auld) [2022894]
|
||||
- workqueue: Fix typo in comments (Phil Auld) [2022894]
|
||||
- workqueue: Fix possible memory leaks in wq_numa_init() (Phil Auld) [2022894]
|
||||
- nvme: avoid race in shutdown namespace removal (Ewan D. Milne) [2014529]
|
||||
- powerpc/xmon: Dump XIVE information for online-only processors. (Steve Best) [2037642]
|
||||
- ipv4: make exception cache less predictible (Antoine Tenart) [2015112] {CVE-2021-20322}
|
||||
- [s390] s390/cio: make ccw_device_dma_* more robust (Claudio Imbrenda) [1997541]
|
||||
- [s390] s390/pci: add s390_iommu_aperture kernel parameter (Claudio Imbrenda) [2034134]
|
||||
- [s390] s390/pci: fix zpci_zdev_put() on reserve (Claudio Imbrenda) [2034132]
|
||||
- [s390] s390/pci: cleanup resources only if necessary (Claudio Imbrenda) [2034132]
|
||||
- [s390] s390/sclp: fix Secure-IPL facility detection (Claudio Imbrenda) [2034116]
|
||||
- Revert "[redhat] Generate a crashkernel.default for each kernel build" (Coiby Xu) [2034490]
|
||||
- ibmvnic: Process crqs after enabling interrupts (Diego Domingos) [2020021]
|
||||
- ibmvnic: delay complete() (Diego Domingos) [2020021]
|
||||
- ibmvnic: don't stop queue in xmit (Diego Domingos) [2019988]
|
||||
- bpf/selftests: disable test failing on RHEL9 (Viktor Malik) [2006315]
|
||||
- bpf/selftests: disable a verifier test for powerpc (Viktor Malik) [2032734]
|
||||
- bpf/selftests: allow disabling tests (Viktor Malik) [2036656]
|
||||
- kernel/crash_core: suppress unknown crashkernel parameter warning (Philipp Rudo) [2026570]
|
||||
- mm/vmalloc: do not adjust the search size for alignment overhead (David Hildenbrand) [2029493]
|
||||
- Bluetooth: fix use-after-free error in lock_sock_nested() (Gopal Tiwari) [2005691]
|
||||
- lib: zstd: Don't add -O3 to cflags (Neal Gompa) [2034834]
|
||||
- lib: zstd: Don't inline functions in zstd_opt.c (Neal Gompa) [2034834]
|
||||
- lib: zstd: Fix unused variable warning (Neal Gompa) [2034834]
|
||||
- lib: zstd: Add cast to silence clang's -Wbitwise-instead-of-logical (Neal Gompa) [2034834]
|
||||
- MAINTAINERS: Add maintainer entry for zstd (Neal Gompa) [2034834]
|
||||
- lib: zstd: Upgrade to latest upstream zstd version 1.4.10 (Neal Gompa) [2034834]
|
||||
- lib: zstd: Add decompress_sources.h for decompress_unzstd (Neal Gompa) [2034834]
|
||||
- lib: zstd: Add kernel-specific API (Neal Gompa) [2034834]
|
||||
|
||||
* Tue Jan 18 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-44.rt21.44.el9]
|
||||
- dm btree remove: fix use after free in rebalance_children() (Benjamin Marzinski) [2031198]
|
||||
- dm table: log table creation error code (Benjamin Marzinski) [2031198]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-44.rt21.44.el9.tar.xz) = 35a076fae244e2788b9ddc1ebd41d82dd007250435341ede6471eccd5a67ae4cddf1cadfab9e9f8145e0434e14e61a46decf06321a3f55c9a9bb70c888718014
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-44.tar.bz2) = 17ce963e1b07c883c298a1816f5ef2dc46c15e0154af3a58c03bb0804e5a00707f8a4d18e4c9f577d8cf4d66f2a9b9af7d75ec9c42928de6f6f0a991a77c53ea
|
||||
SHA512 (kernel-kabi-dw-5.14.0-44.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
SHA512 (linux-5.14.0-45.rt21.45.el9.tar.xz) = 153a63eb8a54f4d1c8fe22630eb7c1dd78eeb85aa2cf03d844a12385c28dc829ffb0b60b3fe5f17e2769d1a9860e7279b742facd8b568312341e81d8e87d4c06
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-45.tar.bz2) = 1cd50c8008f36c158b6d06a6e351df7df83b7916ffff36ae32e79932a88681b7bfe342377a4a65eac5f6231d07991287ae3e981334e130384e8f5f72bf2f81c6
|
||||
SHA512 (kernel-kabi-dw-5.14.0-45.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
|
Loading…
Reference in New Issue
Block a user