kernel-rt-5.14.0-208.rt14.209.el9

* Thu Dec 08 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-208.rt14.209.el9]
- [rt] build kernel-rt-5.14.0-208.rt14.209.el9 [2125474]
- selftests/livepatch: better synchronize test_klp_callbacks_busy (Julia Denham) [2121205]
- livepatch: Reorder to use before freeing a pointer (Julia Denham) [2121205]
- livepatch: Skip livepatch tests if ftrace cannot be configured (Julia Denham) [2121205]
- livepatch: Don't block removal of patches that are safe to unload (Julia Denham) [2121205]
- enable CONFIG_CRYPTO_DH_RFC7919_GROUPS (Chris Leech) [2143836]
- crypto: add __init/__exit annotations to init/exit funcs (Chris Leech) [2143836]
- crypto: dh - Remove the unused function dh_safe_prime_dh_alg() (Chris Leech) [2143836]
- crypto: dh - calculate Q from P for the full public key verification (Chris Leech) [2143836]
- crypto: dh - allow for passing NULL to the ffdheXYZ(dh)s' ->set_secret() (Chris Leech) [2143836]
- crypto: testmgr - add keygen tests for ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - implement private key generation primitive for ffdheXYZ(dh) (Chris Leech) [2143836]
- crypto: testmgr - add known answer tests for ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - implement ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - introduce common code for built-in safe-prime group support (Chris Leech) [2143836]
- crypto: dh - split out deserialization code from crypto_dh_decode() (Chris Leech) [2143836]
- crypto: dh - remove struct dh's ->q member (Chris Leech) [2143836]
- crypto: kpp - provide support for KPP spawns (Chris Leech) [2143836]
- crypto: kpp - provide support for KPP template instances (Chris Leech) [2143836]
- scsi: storvsc: remove an extraneous "to" in a comment (Cathy Avery) [2143335]
- Drivers: hv: vmbus: Optimize vmbus_on_event (Cathy Avery) [2143335]
- scsi: storvsc: Drop DID_TARGET_FAILURE use (Cathy Avery) [2143335]
- scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq (Cathy Avery) [2143335]
- scsi: storvsc: Correct reporting of Hyper-V I/O size limits (Cathy Avery) [2143335]
- scsi: storvsc: Removing Pre Win8 related logic (Cathy Avery) [2143335]
- scsi: storvsc: Fix typo in comment (Cathy Avery) [2143335]
- scsi: storvsc: Remove support for Hyper-V 2008 and 2008R2/Win7 (Cathy Avery) [2143335]
Resolves: rhbz#2125474

Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
This commit is contained in:
Luis Claudio R. Goncalves 2022-12-08 11:00:05 -03:00
parent b1daa19e03
commit 614179bdc5
5 changed files with 40 additions and 9 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 2
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 207
RHEL_RELEASE = 208
#
# ZSTREAM
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
endif
endif
RTBUILD:=.208
RTBUILD:=.209

View File

@ -892,6 +892,7 @@ CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
CONFIG_CRYPTO_DEV_SP_CCP=y
CONFIG_CRYPTO_DEV_SP_PSP=y
# CONFIG_CRYPTO_DEV_VIRTIO is not set
CONFIG_CRYPTO_DH_RFC7919_GROUPS=y
CONFIG_CRYPTO_DH=y
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG_HASH=y

View File

@ -892,6 +892,7 @@ CONFIG_CRYPTO_DEV_QAT_DH895xCCVF=m
CONFIG_CRYPTO_DEV_SP_CCP=y
CONFIG_CRYPTO_DEV_SP_PSP=y
# CONFIG_CRYPTO_DEV_VIRTIO is not set
CONFIG_CRYPTO_DH_RFC7919_GROUPS=y
CONFIG_CRYPTO_DH=y
CONFIG_CRYPTO_DRBG_CTR=y
CONFIG_CRYPTO_DRBG_HASH=y

View File

@ -119,15 +119,15 @@ Summary: The Linux kernel
# define buildid .local
%define specversion 5.14.0
%define patchversion 5.14
%define pkgrelease 207.rt14.208
%define pkgrelease 208.rt14.209
%define kversion 5
%define tarfile_release 5.14.0-207.rt14.208.el9
%define tarfile_release 5.14.0-208.rt14.209.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 207.rt14.208%{?buildid}%{?dist}
%define specrelease 208.rt14.209%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-207.rt14.208.el9
%define kabiversion 5.14.0-208.rt14.209.el9
#
# End of genspec.sh variables
@ -3236,6 +3236,35 @@ fi
#
#
%changelog
* Thu Dec 08 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-208.rt14.209.el9]
- [rt] build kernel-rt-5.14.0-208.rt14.209.el9 [2125474]
- selftests/livepatch: better synchronize test_klp_callbacks_busy (Julia Denham) [2121205]
- livepatch: Reorder to use before freeing a pointer (Julia Denham) [2121205]
- livepatch: Skip livepatch tests if ftrace cannot be configured (Julia Denham) [2121205]
- livepatch: Don't block removal of patches that are safe to unload (Julia Denham) [2121205]
- enable CONFIG_CRYPTO_DH_RFC7919_GROUPS (Chris Leech) [2143836]
- crypto: add __init/__exit annotations to init/exit funcs (Chris Leech) [2143836]
- crypto: dh - Remove the unused function dh_safe_prime_dh_alg() (Chris Leech) [2143836]
- crypto: dh - calculate Q from P for the full public key verification (Chris Leech) [2143836]
- crypto: dh - allow for passing NULL to the ffdheXYZ(dh)s' ->set_secret() (Chris Leech) [2143836]
- crypto: testmgr - add keygen tests for ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - implement private key generation primitive for ffdheXYZ(dh) (Chris Leech) [2143836]
- crypto: testmgr - add known answer tests for ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - implement ffdheXYZ(dh) templates (Chris Leech) [2143836]
- crypto: dh - introduce common code for built-in safe-prime group support (Chris Leech) [2143836]
- crypto: dh - split out deserialization code from crypto_dh_decode() (Chris Leech) [2143836]
- crypto: dh - remove struct dh's ->q member (Chris Leech) [2143836]
- crypto: kpp - provide support for KPP spawns (Chris Leech) [2143836]
- crypto: kpp - provide support for KPP template instances (Chris Leech) [2143836]
- scsi: storvsc: remove an extraneous "to" in a comment (Cathy Avery) [2143335]
- Drivers: hv: vmbus: Optimize vmbus_on_event (Cathy Avery) [2143335]
- scsi: storvsc: Drop DID_TARGET_FAILURE use (Cathy Avery) [2143335]
- scsi: storvsc: Remove WQ_MEM_RECLAIM from storvsc_error_wq (Cathy Avery) [2143335]
- scsi: storvsc: Correct reporting of Hyper-V I/O size limits (Cathy Avery) [2143335]
- scsi: storvsc: Removing Pre Win8 related logic (Cathy Avery) [2143335]
- scsi: storvsc: Fix typo in comment (Cathy Avery) [2143335]
- scsi: storvsc: Remove support for Hyper-V 2008 and 2008R2/Win7 (Cathy Avery) [2143335]
* Tue Dec 06 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-207.rt14.208.el9]
- [rt] build kernel-rt-5.14.0-207.rt14.208.el9 [2125474]
- HID: intel-ish-hid: ipc: Add Meteor Lake PCI device ID (Tony Camuso) [2131760]

View File

@ -1,4 +1,4 @@
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
SHA512 (linux-5.14.0-207.rt14.208.el9.tar.xz) = 26f94ea1187196fe787e8fe3b64876ff35ab6cecc91b3b3bc21091c8e5e83d44bec64aa49efa1bf682e81e6d0156c0921e85902e1f0b054b526aeef18e4a258a
SHA512 (kernel-abi-stablelists-5.14.0-207.rt14.208.el9.tar.bz2) = a70b748157c3dc69a15dc96a2c0c6f2b90bbebba671193379cc10cfc30cda272acdf8af4a8f0aceba1cee4ec03575e6ab30e1d17ee6a09970317d347b21ad22c
SHA512 (kernel-kabi-dw-5.14.0-207.rt14.208.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578
SHA512 (linux-5.14.0-208.rt14.209.el9.tar.xz) = ebe32314b17738174598efcd748ac30ee21840456f37fc9d1480e99342bfa08e1c5dbb09e239a258cc19743622cbd60bb29ca764640598bcc84b025bd4820aa2
SHA512 (kernel-abi-stablelists-5.14.0-208.rt14.209.el9.tar.bz2) = 97461670fcf42709f80c82f3f8af9d4bf70c52cf40caeda3f5a88c9841788005fb9519f9d3bec556c89bf172e83aea67da4c2b4a6d9339cae40e9f378bdab9fa
SHA512 (kernel-kabi-dw-5.14.0-208.rt14.209.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578