kernel-5.14.0-199.el9

* Sat Nov 19 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-199.el9]
- redhat/configs: turn off NXP i.MX9 family (Steve Best) [2138010]
- soc: imx: imx93-pd: Fix the error handling path of imx93_pd_probe() (Steve Best) [2138010]
- soc: imx: add i.MX93 media blk ctrl driver (Steve Best) [2138010]
- dt-bindings: soc: add i.MX93 mediamix blk ctrl (Steve Best) [2138010]
- soc: imx: add i.MX93 SRC power domain driver (Steve Best) [2138010]
- ipv6: Fix crash when IPv6 is administratively disabled (Guillaume Nault) [2138802]
- raw: fix a typo in raw_icmp_error() (Guillaume Nault) [2138802]
- raw: remove unused variables from raw6_icmp_error() (Guillaume Nault) [2138802]
- raw: complete rcu conversion (Guillaume Nault) [2138802]
- raw: Use helpers for the hlist_nulls variant. (Guillaume Nault) [2138802]
- raw: Fix mixed declarations error in raw_icmp_error(). (Guillaume Nault) [2138802]
- raw: convert raw sockets to RCU (Guillaume Nault) [2138802]
- raw: use more conventional iterators (Guillaume Nault) [2138802]
- arm64: kdump: Reimplement crashkernel=X fixup (Eric Chanudet) [2136853]
- bnx2x: Fix comment typo (Manish Chopra) [2112159]
- bnx2x: Fix spelling mistake "regiser" -> "register" (Manish Chopra) [2112159]
- bnx2x: Fix undefined behavior due to shift overflowing the constant (Manish Chopra) [2112159]
- RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() (Manish Chopra) [2112168]
- qlogic: qed: fix clang -Wformat warnings (Manish Chopra) [2112168]
- qed: Use bitmap_empty() (Manish Chopra) [2112168]
- qed: Use the bitmap API to allocate bitmaps (Manish Chopra) [2112168]
- qlogic/qed: fix repeated words in comments (Manish Chopra) [2112168]
- RDMA/qedr: Fix reporting QP timeout attribute (Manish Chopra) [2112168]
- qed: fix typos in comments (Manish Chopra) [2112168]
- net: qed: fix typos in comments (Manish Chopra) [2112168]
- RDMA/qedr: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- net: qede: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- qed: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- qed: replace bitmap_weight with bitmap_empty in qed_roce_stop() (Manish Chopra) [2112168]
- qed: rework qed_rdma_bmap_free() (Manish Chopra) [2112168]
- qed: Remove IP services API. (Manish Chopra) [2112168]
- qed: remove an unneed NULL check on list iterator (Manish Chopra) [2112168]
Resolves: rhbz#2138010, rhbz#2138802, rhbz#2136853, rhbz#2112159, rhbz#2112168

Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
This commit is contained in:
Frantisek Hrbata 2022-11-19 04:18:12 -05:00
parent b5718c6aa3
commit 0f2276f380
5 changed files with 44 additions and 8 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 = 198
RHEL_RELEASE = 199
#
# ZSTREAM

View File

@ -5607,6 +5607,7 @@ CONFIG_SND_VX222=m
# CONFIG_SND_YMFPCI is not set
# CONFIG_SOC_BRCMSTB is not set
CONFIG_SOC_IMX8M=y
# CONFIG_SOC_IMX9 is not set
# CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set
# CONFIG_SOC_TI is not set
CONFIG_SOFTLOCKUP_DETECTOR=y

View File

@ -5583,6 +5583,7 @@ CONFIG_SND_VX222=m
# CONFIG_SND_YMFPCI is not set
# CONFIG_SOC_BRCMSTB is not set
CONFIG_SOC_IMX8M=y
# CONFIG_SOC_IMX9 is not set
# CONFIG_SOCIONEXT_SYNQUACER_PREITS is not set
# CONFIG_SOC_TI is not set
CONFIG_SOFTLOCKUP_DETECTOR=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 198
%define pkgrelease 199
%define kversion 5
%define tarfile_release 5.14.0-198.el9
%define tarfile_release 5.14.0-199.el9
# This is needed to do merge window version magic
%define patchlevel 14
# This allows pkg_release to have configurable %%{?dist} tag
%define specrelease 198%{?buildid}%{?dist}
%define specrelease 199%{?buildid}%{?dist}
# This defines the kabi tarball version
%define kabiversion 5.14.0-198.el9
%define kabiversion 5.14.0-199.el9
#
# End of genspec.sh variables
@ -3061,6 +3061,40 @@ fi
#
#
%changelog
* Sat Nov 19 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-199.el9]
- redhat/configs: turn off NXP i.MX9 family (Steve Best) [2138010]
- soc: imx: imx93-pd: Fix the error handling path of imx93_pd_probe() (Steve Best) [2138010]
- soc: imx: add i.MX93 media blk ctrl driver (Steve Best) [2138010]
- dt-bindings: soc: add i.MX93 mediamix blk ctrl (Steve Best) [2138010]
- soc: imx: add i.MX93 SRC power domain driver (Steve Best) [2138010]
- ipv6: Fix crash when IPv6 is administratively disabled (Guillaume Nault) [2138802]
- raw: fix a typo in raw_icmp_error() (Guillaume Nault) [2138802]
- raw: remove unused variables from raw6_icmp_error() (Guillaume Nault) [2138802]
- raw: complete rcu conversion (Guillaume Nault) [2138802]
- raw: Use helpers for the hlist_nulls variant. (Guillaume Nault) [2138802]
- raw: Fix mixed declarations error in raw_icmp_error(). (Guillaume Nault) [2138802]
- raw: convert raw sockets to RCU (Guillaume Nault) [2138802]
- raw: use more conventional iterators (Guillaume Nault) [2138802]
- arm64: kdump: Reimplement crashkernel=X fixup (Eric Chanudet) [2136853]
- bnx2x: Fix comment typo (Manish Chopra) [2112159]
- bnx2x: Fix spelling mistake "regiser" -> "register" (Manish Chopra) [2112159]
- bnx2x: Fix undefined behavior due to shift overflowing the constant (Manish Chopra) [2112159]
- RDMA/qedr: Fix potential memory leak in __qedr_alloc_mr() (Manish Chopra) [2112168]
- qlogic: qed: fix clang -Wformat warnings (Manish Chopra) [2112168]
- qed: Use bitmap_empty() (Manish Chopra) [2112168]
- qed: Use the bitmap API to allocate bitmaps (Manish Chopra) [2112168]
- qlogic/qed: fix repeated words in comments (Manish Chopra) [2112168]
- RDMA/qedr: Fix reporting QP timeout attribute (Manish Chopra) [2112168]
- qed: fix typos in comments (Manish Chopra) [2112168]
- net: qed: fix typos in comments (Manish Chopra) [2112168]
- RDMA/qedr: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- net: qede: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- qed: Remove unnecessary synchronize_irq() before free_irq() (Manish Chopra) [2112168]
- qed: replace bitmap_weight with bitmap_empty in qed_roce_stop() (Manish Chopra) [2112168]
- qed: rework qed_rdma_bmap_free() (Manish Chopra) [2112168]
- qed: Remove IP services API. (Manish Chopra) [2112168]
- qed: remove an unneed NULL check on list iterator (Manish Chopra) [2112168]
* Thu Nov 17 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-198.el9]
- CI: Remove deprecated variable (Veronika Kabatova)
- atlantic: fix deadlock at aq_nic_stop (Íñigo Huguet) [2125601]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-198.el9.tar.xz) = dea2cad6f2354de0d00e81f1e1d76d145c1ff6a116cc0fa4c50aecb8f6ed38707ddafa7cd46f8c56d552b6de536813e098704730941167cdc21503d6fe59ab0c
SHA512 (kernel-abi-stablelists-5.14.0-198.el9.tar.bz2) = 3e6f80ee6b64036aaff868058de9fe2beda34e0632cf303f08e3bec1eaa0ae9928c76ecad7d61e0dfd0e4453ac1d7077986619ce3cd9b8427b0a77fb61c505e6
SHA512 (kernel-kabi-dw-5.14.0-198.el9.tar.bz2) = 3aff600593afa35e89015dec9a1391df3f6126d9f2d1c5daa15db2745d053aec470dab2772559e73b07c21af77c0f43ec560529a2e65086d7d9c0ff7dddf4c5b
SHA512 (linux-5.14.0-199.el9.tar.xz) = df6eae9644dcf73c106eb949a2efc9ae2ab878f53d449aba5c51707cf4239f7233c6baf395712b9cbcba5f7a1928ab01ce904d00088221cae6b24bd05b6d362b
SHA512 (kernel-abi-stablelists-5.14.0-199.el9.tar.bz2) = d87874b6cf497187e47859b34af103fd7832006650fc207d60e4a420db6827368df35472f580278409301d69eb13da52639010f3160cf50c888b7a3fff564d0e
SHA512 (kernel-kabi-dw-5.14.0-199.el9.tar.bz2) = 3aff600593afa35e89015dec9a1391df3f6126d9f2d1c5daa15db2745d053aec470dab2772559e73b07c21af77c0f43ec560529a2e65086d7d9c0ff7dddf4c5b