kernel-5.14.0-592.el9
* Thu Jun 05 2025 Jan Stancek <jstancek@redhat.com> [5.14.0-592.el9] - drm: remove driver date from struct drm_driver and all drivers (Robert Foss) [RHEL-75950] - overflow: Introduce overflows_type() and castable_to_type() (Robert Foss) [RHEL-75950] - ASoC: hdmi-codec: move no_capture_mute to struct hdmi_codec_pdata (Robert Foss) [RHEL-75950] - ASoC: hdmi-codec: pass data to get_dai_id too (Robert Foss) [RHEL-75950] - kfifo: fix typos in kernel-doc (Robert Foss) [RHEL-75950] - kfifo: add kfifo_dma_out_prepare_mapped() (Robert Foss) [RHEL-75950] - kfifo: pass offset to setup_sgl_buf() instead of a pointer (Robert Foss) [RHEL-75950] - kfifo: rename l to len_to_end in setup_sgl() (Robert Foss) [RHEL-75950] - kfifo: remove support for physically non-contiguous memory (Robert Foss) [RHEL-75950] - kfifo: add kfifo_out_linear{,_ptr}() (Robert Foss) [RHEL-75950] - kfifo: introduce and use kfifo_skip_count() (Robert Foss) [RHEL-75950] - kfifo: drop __kfifo_dma_out_finish_r() (Robert Foss) [RHEL-75950] - arm64/efistub: Clean up KASLR logic (Lenny Szubowicz) [RHEL-33066] - efi/libstub: Cast away type warning in use of max() (Lenny Szubowicz) [RHEL-33066] - efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address (Lenny Szubowicz) [RHEL-33066] - x86/efistub: Remap kernel text read-only before dropping NX attribute (Lenny Szubowicz) [RHEL-33066] - x86/efistub: Avoid placing the kernel below LOAD_PHYSICAL_ADDR (Lenny Szubowicz) [RHEL-33066] - x86/efistub: Give up if memory attribute protocol returns an error (Lenny Szubowicz) [RHEL-33066] - libstub: Fix compilation warning for rv32 (Lenny Szubowicz) [RHEL-33066] - arm64: libstub: Move KASLR handling functions to kaslr.c (Lenny Szubowicz) [RHEL-33066] - crypto: tegra - Fix IV usage for AES ECB (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Fix format specifier in (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Use HMAC fallback when keyslots are full (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Reserve keyslots to allocate dynamically (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Set IV to NULL explicitly for AES ECB (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Fix CMAC intermediate result handling (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Fix HASH intermediate result handling (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Transfer HASH init function to crypto engine (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - check return value for hash do_one_req (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - finalize crypto req on error (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Do not use fixed size buffers (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - Use separate buffer for setkey (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - remove unneeded crypto_engine_stop() call (Marcin Juszkiewicz) [RHEL-83268] - crypto: tegra - remove redundant error check on ret (Marcin Juszkiewicz) [RHEL-83268] - crypto: engine - Remove prepare/unprepare request (Marcin Juszkiewicz) [RHEL-83268] - crypto: iaa - Do not clobber req->base.data (Vladis Dronov) [RHEL-87768] - crypto: iaa - Move compression CRC into request object (Vladis Dronov) [RHEL-87768] - crypto: iaa - Test the correct request flag (Vladis Dronov) [RHEL-87768] - MAINTAINERS: Add Vinicius Gomes to MAINTAINERS for IAA Crypto (Vladis Dronov) [RHEL-87768] - crypto: iaa - Fix IAA disabling that occurs when sync_mode is set to 'async' (Vladis Dronov) [RHEL-87768] - scsi: target: iscsi: Fix timeout on deleted connection (Maurizio Lombardi) [RHEL-93481] - scsi: target: tcm_loop: Fix wrong abort tag (Maurizio Lombardi) [RHEL-93481] - scsi: tcm_loop: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Maurizio Lombardi) [RHEL-93481] - scsi: target: Replace deprecated strncpy() with strscpy() (Maurizio Lombardi) [RHEL-93481] - scsi: target: iscsi: Fix typos (Maurizio Lombardi) [RHEL-93481] - scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() (Maurizio Lombardi) [RHEL-93481] - scsi: target: spc: Fix RSOC parameter data header size (Maurizio Lombardi) [RHEL-93481] - scsi: target: core: Add line break to status show (Maurizio Lombardi) [RHEL-93481] - scsi: target: tcmu: Constify some structures (Maurizio Lombardi) [RHEL-93481] - scsi: target: Fix incorrect function name in pscsi_create_type_disk() (Maurizio Lombardi) [RHEL-93481] Resolves: RHEL-33066, RHEL-75950, RHEL-83268, RHEL-87768, RHEL-93481 Signed-off-by: Jan Stancek <jstancek@redhat.com>
This commit is contained in:
parent
4d89cdca16
commit
f55a4fba99
@ -12,7 +12,7 @@ RHEL_MINOR = 7
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 591
|
||||
RHEL_RELEASE = 592
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
|
@ -1,3 +1,56 @@
|
||||
* Thu Jun 05 2025 Jan Stancek <jstancek@redhat.com> [5.14.0-592.el9]
|
||||
- drm: remove driver date from struct drm_driver and all drivers (Robert Foss) [RHEL-75950]
|
||||
- overflow: Introduce overflows_type() and castable_to_type() (Robert Foss) [RHEL-75950]
|
||||
- ASoC: hdmi-codec: move no_capture_mute to struct hdmi_codec_pdata (Robert Foss) [RHEL-75950]
|
||||
- ASoC: hdmi-codec: pass data to get_dai_id too (Robert Foss) [RHEL-75950]
|
||||
- kfifo: fix typos in kernel-doc (Robert Foss) [RHEL-75950]
|
||||
- kfifo: add kfifo_dma_out_prepare_mapped() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: pass offset to setup_sgl_buf() instead of a pointer (Robert Foss) [RHEL-75950]
|
||||
- kfifo: rename l to len_to_end in setup_sgl() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: remove support for physically non-contiguous memory (Robert Foss) [RHEL-75950]
|
||||
- kfifo: add kfifo_out_linear{,_ptr}() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: introduce and use kfifo_skip_count() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: drop __kfifo_dma_out_finish_r() (Robert Foss) [RHEL-75950]
|
||||
- arm64/efistub: Clean up KASLR logic (Lenny Szubowicz) [RHEL-33066]
|
||||
- efi/libstub: Cast away type warning in use of max() (Lenny Szubowicz) [RHEL-33066]
|
||||
- efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Remap kernel text read-only before dropping NX attribute (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Avoid placing the kernel below LOAD_PHYSICAL_ADDR (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Give up if memory attribute protocol returns an error (Lenny Szubowicz) [RHEL-33066]
|
||||
- libstub: Fix compilation warning for rv32 (Lenny Szubowicz) [RHEL-33066]
|
||||
- arm64: libstub: Move KASLR handling functions to kaslr.c (Lenny Szubowicz) [RHEL-33066]
|
||||
- crypto: tegra - Fix IV usage for AES ECB (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix format specifier in (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Use HMAC fallback when keyslots are full (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Reserve keyslots to allocate dynamically (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Set IV to NULL explicitly for AES ECB (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix CMAC intermediate result handling (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix HASH intermediate result handling (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Transfer HASH init function to crypto engine (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - check return value for hash do_one_req (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - finalize crypto req on error (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Do not use fixed size buffers (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Use separate buffer for setkey (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - remove unneeded crypto_engine_stop() call (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - remove redundant error check on ret (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: engine - Remove prepare/unprepare request (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: iaa - Do not clobber req->base.data (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Move compression CRC into request object (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Test the correct request flag (Vladis Dronov) [RHEL-87768]
|
||||
- MAINTAINERS: Add Vinicius Gomes to MAINTAINERS for IAA Crypto (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Fix IAA disabling that occurs when sync_mode is set to 'async' (Vladis Dronov) [RHEL-87768]
|
||||
- scsi: target: iscsi: Fix timeout on deleted connection (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: tcm_loop: Fix wrong abort tag (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: tcm_loop: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: Replace deprecated strncpy() with strscpy() (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: iscsi: Fix typos (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: spc: Fix RSOC parameter data header size (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: core: Add line break to status show (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: tcmu: Constify some structures (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: Fix incorrect function name in pscsi_create_type_disk() (Maurizio Lombardi) [RHEL-93481]
|
||||
Resolves: RHEL-33066, RHEL-75950, RHEL-83268, RHEL-87768, RHEL-93481
|
||||
|
||||
* Tue Jun 03 2025 Jan Stancek <jstancek@redhat.com> [5.14.0-591.el9]
|
||||
- uki_addons: add 'fedora' SBAT suffix for UKI addons (Li Tian) [RHEL-93399]
|
||||
- Subject: net/smc: check return value of sock_recvmsg when draining clc data (Mete Durlu) [RHEL-73484] {CVE-2024-57791}
|
||||
|
60
kernel.spec
60
kernel.spec
@ -165,15 +165,15 @@ Summary: The Linux kernel
|
||||
# define buildid .local
|
||||
%define specversion 5.14.0
|
||||
%define patchversion 5.14
|
||||
%define pkgrelease 591
|
||||
%define pkgrelease 592
|
||||
%define kversion 5
|
||||
%define tarfile_release 5.14.0-591.el9
|
||||
%define tarfile_release 5.14.0-592.el9
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
# This allows pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 591%{?buildid}%{?dist}
|
||||
%define specrelease 592%{?buildid}%{?dist}
|
||||
# This defines the kabi tarball version
|
||||
%define kabiversion 5.14.0-591.el9
|
||||
%define kabiversion 5.14.0-592.el9
|
||||
|
||||
#
|
||||
# End of genspec.sh variables
|
||||
@ -3676,6 +3676,58 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Thu Jun 05 2025 Jan Stancek <jstancek@redhat.com> [5.14.0-592.el9]
|
||||
- drm: remove driver date from struct drm_driver and all drivers (Robert Foss) [RHEL-75950]
|
||||
- overflow: Introduce overflows_type() and castable_to_type() (Robert Foss) [RHEL-75950]
|
||||
- ASoC: hdmi-codec: move no_capture_mute to struct hdmi_codec_pdata (Robert Foss) [RHEL-75950]
|
||||
- ASoC: hdmi-codec: pass data to get_dai_id too (Robert Foss) [RHEL-75950]
|
||||
- kfifo: fix typos in kernel-doc (Robert Foss) [RHEL-75950]
|
||||
- kfifo: add kfifo_dma_out_prepare_mapped() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: pass offset to setup_sgl_buf() instead of a pointer (Robert Foss) [RHEL-75950]
|
||||
- kfifo: rename l to len_to_end in setup_sgl() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: remove support for physically non-contiguous memory (Robert Foss) [RHEL-75950]
|
||||
- kfifo: add kfifo_out_linear{,_ptr}() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: introduce and use kfifo_skip_count() (Robert Foss) [RHEL-75950]
|
||||
- kfifo: drop __kfifo_dma_out_finish_r() (Robert Foss) [RHEL-75950]
|
||||
- arm64/efistub: Clean up KASLR logic (Lenny Szubowicz) [RHEL-33066]
|
||||
- efi/libstub: Cast away type warning in use of max() (Lenny Szubowicz) [RHEL-33066]
|
||||
- efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Remap kernel text read-only before dropping NX attribute (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Avoid placing the kernel below LOAD_PHYSICAL_ADDR (Lenny Szubowicz) [RHEL-33066]
|
||||
- x86/efistub: Give up if memory attribute protocol returns an error (Lenny Szubowicz) [RHEL-33066]
|
||||
- libstub: Fix compilation warning for rv32 (Lenny Szubowicz) [RHEL-33066]
|
||||
- arm64: libstub: Move KASLR handling functions to kaslr.c (Lenny Szubowicz) [RHEL-33066]
|
||||
- crypto: tegra - Fix IV usage for AES ECB (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix format specifier in (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Use HMAC fallback when keyslots are full (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Reserve keyslots to allocate dynamically (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Set IV to NULL explicitly for AES ECB (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix CMAC intermediate result handling (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Fix HASH intermediate result handling (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Transfer HASH init function to crypto engine (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - check return value for hash do_one_req (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - finalize crypto req on error (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Do not use fixed size buffers (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - Use separate buffer for setkey (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - remove unneeded crypto_engine_stop() call (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: tegra - remove redundant error check on ret (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: engine - Remove prepare/unprepare request (Marcin Juszkiewicz) [RHEL-83268]
|
||||
- crypto: iaa - Do not clobber req->base.data (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Move compression CRC into request object (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Test the correct request flag (Vladis Dronov) [RHEL-87768]
|
||||
- MAINTAINERS: Add Vinicius Gomes to MAINTAINERS for IAA Crypto (Vladis Dronov) [RHEL-87768]
|
||||
- crypto: iaa - Fix IAA disabling that occurs when sync_mode is set to 'async' (Vladis Dronov) [RHEL-87768]
|
||||
- scsi: target: iscsi: Fix timeout on deleted connection (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: tcm_loop: Fix wrong abort tag (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: tcm_loop: Use scsi_cmd_to_rq() instead of scsi_cmnd.request (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: Replace deprecated strncpy() with strscpy() (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: iscsi: Fix typos (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: spc: Fix RSOC parameter data header size (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: core: Add line break to status show (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: tcmu: Constify some structures (Maurizio Lombardi) [RHEL-93481]
|
||||
- scsi: target: Fix incorrect function name in pscsi_create_type_disk() (Maurizio Lombardi) [RHEL-93481]
|
||||
|
||||
* Tue Jun 03 2025 Jan Stancek <jstancek@redhat.com> [5.14.0-591.el9]
|
||||
- uki_addons: add 'fedora' SBAT suffix for UKI addons (Li Tian) [RHEL-93399]
|
||||
- Subject: net/smc: check return value of sock_recvmsg when draining clc data (Mete Durlu) [RHEL-73484] {CVE-2024-57791}
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-591.el9.tar.xz) = fd0966a7d12307c28337437fff0ab3261a3fca5254f88acf3586082eb0b2e8256f24b721c62412097e7a7f8e6948f87d03ea35b369e0cf34a4cbdf3a55649d22
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-591.el9.tar.bz2) = 344fbb06b21a94b7e1babaa41a9dc93c9f12100d3c721ffce3da26ff6a9b4ef7bce8909fa180d3804d8fd22ab7f2ca94bc87297571866fc462728f06719da301
|
||||
SHA512 (kernel-kabi-dw-5.14.0-591.el9.tar.bz2) = 10872f0b03102f641619e760cf33c7d836ca145bbd2a6929af3011d05cf1583aed9418311a1f2d30655c6f8ddc34127b26a3d7fb4ec1b9512831cd7347412549
|
||||
SHA512 (linux-5.14.0-592.el9.tar.xz) = 49f90391650bb38722b519106c8b035216d2832d8250f979afff058dfefe1b1cd913e8e9fca1cd9cd959777556cd5048c62028b60db28beb1e35ea3e0c4f9168
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-592.el9.tar.bz2) = 5f69180880db2aabe03104e0e9043003e6815992c3f7ed433464b6601fe5c3b8de468f601d8745156d291ae106f681cc5781db459c3b9c1418772a0448fedfaf
|
||||
SHA512 (kernel-kabi-dw-5.14.0-592.el9.tar.bz2) = 1c3d6e8545c32a5526507797e7affb1f8042dd345c98bc11e84582f358a1cb77a10150293f57c1e48176fd7197bad741a6d7abf21a305d844983260fcd635eee
|
||||
|
Loading…
Reference in New Issue
Block a user