forked from rpms/kernel
kernel-5.14.0-183.el9
* Mon Oct 31 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-183.el9] - 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#2128231, rhbz#1994744, rhbz#2119181, rhbz#2131716 Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
This commit is contained in:
parent
44ce1b45e8
commit
b9ed9146fc
@ -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
|
||||
|
@ -1425,6 +1425,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
|
||||
|
@ -1417,6 +1417,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
|
||||
|
34
kernel.spec
34
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
|
||||
%define pkgrelease 183
|
||||
%define kversion 5
|
||||
%define tarfile_release 5.14.0-182.el9
|
||||
%define tarfile_release 5.14.0-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%{?buildid}%{?dist}
|
||||
%define specrelease 183%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 5.14.0-182.el9
|
||||
%define kabiversion 5.14.0-183.el9
|
||||
|
||||
#
|
||||
# End of genspec.sh variables
|
||||
@ -3057,6 +3057,32 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Mon Oct 31 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-183.el9]
|
||||
- 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]
|
||||
|
||||
* Thu Oct 27 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-182.el9]
|
||||
- cgroup/cpuset: remove unreachable code (Waiman Long) [1946801]
|
||||
- kselftest/cgroup: Add cpuset v2 partition root state test (Waiman Long) [1946801]
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-182.el9.tar.xz) = 61bb8291ac165a4169af98dbb536b3b60bcf765ae8ad6f6425d398f760f02df8768f2bc3bbe4dae1b516be3796b7ffef5dc97fd4e3dd0f50a39ebe32a1718f85
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-182.el9.tar.bz2) = 2e44b64a4ccdf9e84687ae4db7f9a652374ac915c73cffe3f47c20267d09b418ac3c817d614b071f9cb3cdda78311f6904074c5f8fe03fb55a1182cebc42905c
|
||||
SHA512 (kernel-kabi-dw-5.14.0-182.el9.tar.bz2) = 3aff600593afa35e89015dec9a1391df3f6126d9f2d1c5daa15db2745d053aec470dab2772559e73b07c21af77c0f43ec560529a2e65086d7d9c0ff7dddf4c5b
|
||||
SHA512 (linux-5.14.0-183.el9.tar.xz) = b812ebda242574bd0ffa4e8b735587a035c3d215f096beea4c352f127f8a5f6b87cc2bcdee83e1f1c7af061a28eb3c5dac8908b076caaa3c2a6960b711218e46
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-183.el9.tar.bz2) = 4a68fb51ca83d22a31760d723e38c350114a8846307c087d357b2595a58a93fef7df6a94e53b35aca730496b7e59deef0d4ce71746fd849ad878093562e8f86e
|
||||
SHA512 (kernel-kabi-dw-5.14.0-183.el9.tar.bz2) = 3aff600593afa35e89015dec9a1391df3f6126d9f2d1c5daa15db2745d053aec470dab2772559e73b07c21af77c0f43ec560529a2e65086d7d9c0ff7dddf4c5b
|
||||
|
Loading…
Reference in New Issue
Block a user