kernel-rt-5.14.0-183.rt21.183.el9
* Mon Oct 31 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-183.rt21.183.el9] - [rt] build kernel-rt-5.14.0-183.rt21.183.el9 [2125474] - tracing: Disable interrupt or preemption before acquiring arch_spinlock_t (Waiman Long) [2128231] - docs: security: Add secrets/coco documentation (Lenny Szubowicz) [1994744] - virt: Add efi_secret module to expose confidential computing secrets (Lenny Szubowicz) [1994744] - Enable CONFIG_EFI_SECRET as a module for x86_64 (Lenny Szubowicz) [1994744] - crypto: ccp - Remove the unneeded result variable (Vladis Dronov) [2119181] - crypto: ccp - Release dma channels before dmaengine unrgister (Vladis Dronov) [2119181] - crypto: ccp - Fail the PSP initialization when writing psp data file failed (Vladis Dronov) [2119181] - crypto: ccp - Initialize PSP when reading psp data file failed (Vladis Dronov) [2119181] - crypto: ccp - Add a quirk to firmware update (Vladis Dronov) [2119181] - crypto: ccp - Add support for new CCP/PSP device ID (Vladis Dronov) [2119181] - crypto: ccp - During shutdown, check SEV data pointer before using (Vladis Dronov) [2119181] - crypto: ccp - fix typo in comment (Vladis Dronov) [2119181] - crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory leak (Vladis Dronov) [2119181] - crypto: ccp - Fix the INIT_EX data file open failure (Vladis Dronov) [2119181] - crypto: ccp - Log when resetting PSP SEV state (Vladis Dronov) [2119181] - crypto: ccp - When TSME and SME both detected notify user (Vladis Dronov) [2119181] - crypto: ccp - Allow PSP driver to load without SEV/TEE support (Vladis Dronov) [2119181] - crypto: ccp - Export PSP security bits to userspace (Vladis Dronov) [2119181] - crypto: ccp - cache capability into psp device (Vladis Dronov) [2119181] - mm: fix BUG splat with kvmalloc + GFP_ATOMIC (Chris von Recklinghausen) [2131716] - mm/hugetlb: correct demote page offset logic (Chris von Recklinghausen) [2131716] - frontswap: don't call ->init if no ops are registered (Chris von Recklinghausen) [2131716] - Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" (Chris von Recklinghausen) [2131716] - Docs/admin-guide/mm/damon/usage: fix the example code snip (Chris von Recklinghausen) [2131716] Resolves: rhbz#2125474 Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
This commit is contained in:
parent
d5c91daf6f
commit
af473fd485
@ -12,7 +12,7 @@ RHEL_MINOR = 2
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 182
|
||||
RHEL_RELEASE = 183
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.182
|
||||
RTBUILD:=.183
|
||||
|
@ -1509,6 +1509,7 @@ CONFIG_EFI_PARTITION=y
|
||||
# CONFIG_EFI_PGT_DUMP is not set
|
||||
CONFIG_EFI_RCI2_TABLE=y
|
||||
CONFIG_EFI_RUNTIME_MAP=y
|
||||
CONFIG_EFI_SECRET=m
|
||||
CONFIG_EFI_SOFT_RESERVE=y
|
||||
CONFIG_EFI_STUB=y
|
||||
# CONFIG_EFI_TEST is not set
|
||||
|
@ -1501,6 +1501,7 @@ CONFIG_EFI_PARTITION=y
|
||||
# CONFIG_EFI_PGT_DUMP is not set
|
||||
CONFIG_EFI_RCI2_TABLE=y
|
||||
CONFIG_EFI_RUNTIME_MAP=y
|
||||
CONFIG_EFI_SECRET=m
|
||||
CONFIG_EFI_SOFT_RESERVE=y
|
||||
CONFIG_EFI_STUB=y
|
||||
# CONFIG_EFI_TEST is not set
|
||||
|
35
kernel.spec
35
kernel.spec
@ -119,15 +119,15 @@ Summary: The Linux kernel
|
||||
# define buildid .local
|
||||
%define specversion 5.14.0
|
||||
%define patchversion 5.14
|
||||
%define pkgrelease 182.rt21.182
|
||||
%define pkgrelease 183.rt21.183
|
||||
%define kversion 5
|
||||
%define tarfile_release 5.14.0-182.rt21.182.el9
|
||||
%define tarfile_release 5.14.0-183.rt21.183.el9
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 182.rt21.182%{?buildid}%{?dist}
|
||||
%define specrelease 183.rt21.183%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 5.14.0-182.rt21.182.el9
|
||||
%define kabiversion 5.14.0-183.rt21.183.el9
|
||||
|
||||
#
|
||||
# End of genspec.sh variables
|
||||
@ -3187,6 +3187,33 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Mon Oct 31 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-183.rt21.183.el9]
|
||||
- [rt] build kernel-rt-5.14.0-183.rt21.183.el9 [2125474]
|
||||
- tracing: Disable interrupt or preemption before acquiring arch_spinlock_t (Waiman Long) [2128231]
|
||||
- docs: security: Add secrets/coco documentation (Lenny Szubowicz) [1994744]
|
||||
- virt: Add efi_secret module to expose confidential computing secrets (Lenny Szubowicz) [1994744]
|
||||
- Enable CONFIG_EFI_SECRET as a module for x86_64 (Lenny Szubowicz) [1994744]
|
||||
- crypto: ccp - Remove the unneeded result variable (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Release dma channels before dmaengine unrgister (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Fail the PSP initialization when writing psp data file failed (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Initialize PSP when reading psp data file failed (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Add a quirk to firmware update (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Add support for new CCP/PSP device ID (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - During shutdown, check SEV data pointer before using (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - fix typo in comment (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Use kzalloc for sev ioctl interfaces to prevent kernel memory leak (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Fix the INIT_EX data file open failure (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Log when resetting PSP SEV state (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - When TSME and SME both detected notify user (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Allow PSP driver to load without SEV/TEE support (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - Export PSP security bits to userspace (Vladis Dronov) [2119181]
|
||||
- crypto: ccp - cache capability into psp device (Vladis Dronov) [2119181]
|
||||
- mm: fix BUG splat with kvmalloc + GFP_ATOMIC (Chris von Recklinghausen) [2131716]
|
||||
- mm/hugetlb: correct demote page offset logic (Chris von Recklinghausen) [2131716]
|
||||
- frontswap: don't call ->init if no ops are registered (Chris von Recklinghausen) [2131716]
|
||||
- Revert "powerpc: Remove unused FW_FEATURE_NATIVE references" (Chris von Recklinghausen) [2131716]
|
||||
- Docs/admin-guide/mm/damon/usage: fix the example code snip (Chris von Recklinghausen) [2131716]
|
||||
|
||||
* Sat Oct 29 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-182.rt21.182.el9]
|
||||
- [rt] build kernel-rt-5.14.0-182.rt21.182.el9 [2125474]
|
||||
- cgroup/cpuset: remove unreachable code (Waiman Long) [1946801]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-182.rt21.182.el9.tar.xz) = ea945c68eaa9297263592c716355229ae7c20c6faaa813e100773920e40587e37f60851eaddacaab94ff39a284aeb699737340e23b6dec5d0c1556fd02c2d1db
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-182.rt21.182.el9.tar.bz2) = 2a2f373b442a0bd1d0780a73931456f6d199b8bfad0c41a50fa70c86854880b05d88c1f3727a16758beb86c0ec291626a25e4cdec8850e4e292f6348c77c755d
|
||||
SHA512 (kernel-kabi-dw-5.14.0-182.rt21.182.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578
|
||||
SHA512 (linux-5.14.0-183.rt21.183.el9.tar.xz) = 0128735c239a8e3b3bfb645ee1e3741863f4c537a82cc401310d7a1cff689808d137c72e4fd0dd1add8a49f134e39e412d8a15c2a0f7114d435e7fab8f31036f
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-183.rt21.183.el9.tar.bz2) = 02ed2a8b7261eadb0c7773f9d4d6bdb7c970ded8fcf128bd1a03a5f99e7ec57c35a8e5f1a580ec4485c34c534ad6e5cade63638b5254cd096a0ba9b45a9230b3
|
||||
SHA512 (kernel-kabi-dw-5.14.0-183.rt21.183.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578
|
||||
|
Loading…
Reference in New Issue
Block a user