forked from rpms/kernel
kernel-5.14.0-223.el9
* Thu Dec 22 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-223.el9] - pwm: tegra: Ensure the clock rate is not less than needed (d.marlin) [2141743] - pwm: tegra: Improve required rate calculation (d.marlin) [2141743] - pwm: tegra: Add runtime PM and OPP support (d.marlin) [2141743] - pwm: tegra: Optimize period calculation (d.marlin) [2141743] - hwmon: (pwm-fan) Ensure the fan going on in .probe() (d.marlin) [2141743] - hwmon: (pwm-fan) Explicitly switch off fan power when setting pwm1_enable to 0 (d.marlin) [2141743] - hwmon: (pwm-fan) Switch regulator dynamically (d.marlin) [2141743] - hwmon: (pwm-fan) Use HWMON_CHANNEL_INFO macro (d.marlin) [2141743] - hwmon: (pwm-fan) split __set_pwm into locked/unlocked functions (d.marlin) [2141743] - hwmon: (pwm-fan) Add dedicated power switch function (d.marlin) [2141743] - hwmon: (pwm-fan) Simplify enable/disable check (d.marlin) [2141743] - hwmon: (pwm-fan) Replace OF specific call to PWM by plain one (d.marlin) [2141743] - hwmon: (pwm-fan) Refactor fan power on/off (d.marlin) [2141743] - redhat/configs: consolidate CONFIG_TEST_LIVEPATCH=m (Julia Denham) [2072713] - redhat/configs: enable CONFIG_TEST_LIVEPATCH=m for s390x (Julia Denham) [2072713] - redhat/configs: enable s390x CONFIG_EXPOLINE_EXTERN (Julia Denham) [2072713] - s390/ftrace: implement hotpatching (Julia Denham) [2121735] - ftrace: Introduce ftrace_need_init_nop() (Julia Denham) [2121735] - s390/nospec: build expoline.o for modules_prepare target (Julia Denham) [2072713] - s390/nospec: align and size extern thunks (Julia Denham) [2072713] - s390/nospec: add an option to use thunk-extern (Julia Denham) [2072713] - s390/nospec: generate single register thunks if possible (Julia Denham) [2072713] - s390: remove unused expoline to BC instructions (Julia Denham) [2072713] - s390/entry: remove unused expoline thunk (Julia Denham) [2072713] - s390: replace cc-option-yn uses with cc-option (Julia Denham) [2072713] - net: macsec: Expose MACSEC_SALT_LEN definition to user space (Sabrina Dubroca) [2136170] - macsec: Fix traffic counters/statistics (Sabrina Dubroca) [2136170] - net: macsec: fix potential resource leak in macsec_add_rxsa() and macsec_add_txsa() (Sabrina Dubroca) [2136170] - macsec: always read MACSEC_SA_ATTR_PN as a u64 (Sabrina Dubroca) [2136170] - macsec: limit replay window size with XPN (Sabrina Dubroca) [2136170] - macsec: fix error message in macsec_add_rxsa and _txsa (Sabrina Dubroca) [2136170] - macsec: fix NULL deref in macsec_add_rxsa (Sabrina Dubroca) [2136170] - iavf: Fix error handling in iavf_init_module() (Stefan Assmann) [2104467] - iavf: Fix race condition between iavf_shutdown and iavf_remove (Stefan Assmann) [2104467] - iavf: Do not restart Tx queues after reset task failure (Stefan Assmann) [2104467] - iavf: Fix a crash during reset task (Stefan Assmann) [2104467] - iavf: Fix VF driver counting VLAN 0 filters (Stefan Assmann) [2104467] - iavf: Change information about device removal in dmesg (Stefan Assmann) [2104467] - iavf: Replace __FUNCTION__ with __func__ (Stefan Assmann) [2104467] - net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Stefan Assmann) [2104467] - iavf: Fix set max MTU size with port VLAN and jumbo frames (Stefan Assmann) [2104467] - iavf: Fix bad page state (Stefan Assmann) [2104467] - iavf: Fix cached head and tail value for iavf_get_tx_pending (Stefan Assmann) [2104467] - iavf: Detach device during reset task (Stefan Assmann) [2104467] - iavf: Fix race between iavf_close and iavf_reset_task (Stefan Assmann) [2104467] - net: ethernet: move from strlcpy with unused retval to strscpy (Stefan Assmann) [2104467] - iavf: Fix 'tc qdisc show' listing too many queues (Stefan Assmann) [2104467] - iavf: Fix max_rate limiting (Stefan Assmann) [2104467] - iavf: Check for duplicate TC flower filter before parsing (Stefan Assmann) [2104467] - iavf: Fix handling of dummy receive descriptors (Stefan Assmann) [2104467] - iavf: Disallow changing rx/tx-frames and rx/tx-frames-irq (Stefan Assmann) [2104467] - intel/iavf:fix repeated words in comments (Stefan Assmann) [2104467] - intel: remove unused macros (Stefan Assmann) [2104467] Resolves: rhbz#2141743, rhbz#2072713, rhbz#2121735, rhbz#2136170, rhbz#2104467 Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
parent
3afec5fb3e
commit
1f24c4b343
@ -12,7 +12,7 @@ RHEL_MINOR = 2
|
|||||||
#
|
#
|
||||||
# Use this spot to avoid future merge conflicts.
|
# Use this spot to avoid future merge conflicts.
|
||||||
# Do not trim this comment.
|
# Do not trim this comment.
|
||||||
RHEL_RELEASE = 222
|
RHEL_RELEASE = 223
|
||||||
|
|
||||||
#
|
#
|
||||||
# ZSTREAM
|
# ZSTREAM
|
||||||
|
@ -1375,6 +1375,7 @@ CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
|
|||||||
CONFIG_EXFAT_FS=m
|
CONFIG_EXFAT_FS=m
|
||||||
# CONFIG_EXPERT is not set
|
# CONFIG_EXPERT is not set
|
||||||
CONFIG_EXPOLINE_AUTO=y
|
CONFIG_EXPOLINE_AUTO=y
|
||||||
|
CONFIG_EXPOLINE_EXTERN=y
|
||||||
# CONFIG_EXPOLINE_FULL is not set
|
# CONFIG_EXPOLINE_FULL is not set
|
||||||
# CONFIG_EXPOLINE_OFF is not set
|
# CONFIG_EXPOLINE_OFF is not set
|
||||||
CONFIG_EXPOLINE=y
|
CONFIG_EXPOLINE=y
|
||||||
@ -5413,7 +5414,7 @@ CONFIG_TEST_HMM=m
|
|||||||
# CONFIG_TEST_KMOD is not set
|
# CONFIG_TEST_KMOD is not set
|
||||||
CONFIG_TEST_KSTRTOX=y
|
CONFIG_TEST_KSTRTOX=y
|
||||||
CONFIG_TEST_LIST_SORT=m
|
CONFIG_TEST_LIST_SORT=m
|
||||||
# CONFIG_TEST_LIVEPATCH is not set
|
CONFIG_TEST_LIVEPATCH=m
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
# CONFIG_TEST_LOCKUP is not set
|
# CONFIG_TEST_LOCKUP is not set
|
||||||
# CONFIG_TEST_MEMCAT_P is not set
|
# CONFIG_TEST_MEMCAT_P is not set
|
||||||
|
@ -1367,6 +1367,7 @@ CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
|
|||||||
CONFIG_EXFAT_FS=m
|
CONFIG_EXFAT_FS=m
|
||||||
# CONFIG_EXPERT is not set
|
# CONFIG_EXPERT is not set
|
||||||
CONFIG_EXPOLINE_AUTO=y
|
CONFIG_EXPOLINE_AUTO=y
|
||||||
|
CONFIG_EXPOLINE_EXTERN=y
|
||||||
# CONFIG_EXPOLINE_FULL is not set
|
# CONFIG_EXPOLINE_FULL is not set
|
||||||
# CONFIG_EXPOLINE_OFF is not set
|
# CONFIG_EXPOLINE_OFF is not set
|
||||||
CONFIG_EXPOLINE=y
|
CONFIG_EXPOLINE=y
|
||||||
@ -5391,7 +5392,7 @@ CONFIG_TEST_HMM=m
|
|||||||
# CONFIG_TEST_KMOD is not set
|
# CONFIG_TEST_KMOD is not set
|
||||||
CONFIG_TEST_KSTRTOX=y
|
CONFIG_TEST_KSTRTOX=y
|
||||||
CONFIG_TEST_LIST_SORT=m
|
CONFIG_TEST_LIST_SORT=m
|
||||||
# CONFIG_TEST_LIVEPATCH is not set
|
CONFIG_TEST_LIVEPATCH=m
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
# CONFIG_TEST_LOCKUP is not set
|
# CONFIG_TEST_LOCKUP is not set
|
||||||
# CONFIG_TEST_MEMCAT_P is not set
|
# CONFIG_TEST_MEMCAT_P is not set
|
||||||
|
@ -1374,6 +1374,7 @@ CONFIG_EXFAT_DEFAULT_IOCHARSET="utf8"
|
|||||||
# CONFIG_EXFAT_FS is not set
|
# CONFIG_EXFAT_FS is not set
|
||||||
# CONFIG_EXPERT is not set
|
# CONFIG_EXPERT is not set
|
||||||
CONFIG_EXPOLINE_AUTO=y
|
CONFIG_EXPOLINE_AUTO=y
|
||||||
|
CONFIG_EXPOLINE_EXTERN=y
|
||||||
# CONFIG_EXPOLINE_FULL is not set
|
# CONFIG_EXPOLINE_FULL is not set
|
||||||
# CONFIG_EXPOLINE_OFF is not set
|
# CONFIG_EXPOLINE_OFF is not set
|
||||||
CONFIG_EXPOLINE=y
|
CONFIG_EXPOLINE=y
|
||||||
@ -5417,7 +5418,7 @@ CONFIG_TEST_HMM=m
|
|||||||
# CONFIG_TEST_KMOD is not set
|
# CONFIG_TEST_KMOD is not set
|
||||||
CONFIG_TEST_KSTRTOX=y
|
CONFIG_TEST_KSTRTOX=y
|
||||||
CONFIG_TEST_LIST_SORT=m
|
CONFIG_TEST_LIST_SORT=m
|
||||||
# CONFIG_TEST_LIVEPATCH is not set
|
CONFIG_TEST_LIVEPATCH=m
|
||||||
# CONFIG_TEST_LKM is not set
|
# CONFIG_TEST_LKM is not set
|
||||||
# CONFIG_TEST_LOCKUP is not set
|
# CONFIG_TEST_LOCKUP is not set
|
||||||
# CONFIG_TEST_MEMCAT_P is not set
|
# CONFIG_TEST_MEMCAT_P is not set
|
||||||
|
63
kernel.spec
63
kernel.spec
@ -119,15 +119,15 @@ Summary: The Linux kernel
|
|||||||
# define buildid .local
|
# define buildid .local
|
||||||
%define specversion 5.14.0
|
%define specversion 5.14.0
|
||||||
%define patchversion 5.14
|
%define patchversion 5.14
|
||||||
%define pkgrelease 222
|
%define pkgrelease 223
|
||||||
%define kversion 5
|
%define kversion 5
|
||||||
%define tarfile_release 5.14.0-222.el9
|
%define tarfile_release 5.14.0-223.el9
|
||||||
# This is needed to do merge window version magic
|
# This is needed to do merge window version magic
|
||||||
%define patchlevel 14
|
%define patchlevel 14
|
||||||
# This allows pkg_release to have configurable %%{?dist} tag
|
# This allows pkg_release to have configurable %%{?dist} tag
|
||||||
%define specrelease 222%{?buildid}%{?dist}
|
%define specrelease 223%{?buildid}%{?dist}
|
||||||
# This defines the kabi tarball version
|
# This defines the kabi tarball version
|
||||||
%define kabiversion 5.14.0-222.el9
|
%define kabiversion 5.14.0-223.el9
|
||||||
|
|
||||||
#
|
#
|
||||||
# End of genspec.sh variables
|
# End of genspec.sh variables
|
||||||
@ -3110,6 +3110,61 @@ fi
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Dec 22 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-223.el9]
|
||||||
|
- pwm: tegra: Ensure the clock rate is not less than needed (d.marlin) [2141743]
|
||||||
|
- pwm: tegra: Improve required rate calculation (d.marlin) [2141743]
|
||||||
|
- pwm: tegra: Add runtime PM and OPP support (d.marlin) [2141743]
|
||||||
|
- pwm: tegra: Optimize period calculation (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Ensure the fan going on in .probe() (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Explicitly switch off fan power when setting pwm1_enable to 0 (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Switch regulator dynamically (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Use HWMON_CHANNEL_INFO macro (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) split __set_pwm into locked/unlocked functions (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Add dedicated power switch function (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Simplify enable/disable check (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Replace OF specific call to PWM by plain one (d.marlin) [2141743]
|
||||||
|
- hwmon: (pwm-fan) Refactor fan power on/off (d.marlin) [2141743]
|
||||||
|
- redhat/configs: consolidate CONFIG_TEST_LIVEPATCH=m (Julia Denham) [2072713]
|
||||||
|
- redhat/configs: enable CONFIG_TEST_LIVEPATCH=m for s390x (Julia Denham) [2072713]
|
||||||
|
- redhat/configs: enable s390x CONFIG_EXPOLINE_EXTERN (Julia Denham) [2072713]
|
||||||
|
- s390/ftrace: implement hotpatching (Julia Denham) [2121735]
|
||||||
|
- ftrace: Introduce ftrace_need_init_nop() (Julia Denham) [2121735]
|
||||||
|
- s390/nospec: build expoline.o for modules_prepare target (Julia Denham) [2072713]
|
||||||
|
- s390/nospec: align and size extern thunks (Julia Denham) [2072713]
|
||||||
|
- s390/nospec: add an option to use thunk-extern (Julia Denham) [2072713]
|
||||||
|
- s390/nospec: generate single register thunks if possible (Julia Denham) [2072713]
|
||||||
|
- s390: remove unused expoline to BC instructions (Julia Denham) [2072713]
|
||||||
|
- s390/entry: remove unused expoline thunk (Julia Denham) [2072713]
|
||||||
|
- s390: replace cc-option-yn uses with cc-option (Julia Denham) [2072713]
|
||||||
|
- net: macsec: Expose MACSEC_SALT_LEN definition to user space (Sabrina Dubroca) [2136170]
|
||||||
|
- macsec: Fix traffic counters/statistics (Sabrina Dubroca) [2136170]
|
||||||
|
- net: macsec: fix potential resource leak in macsec_add_rxsa() and macsec_add_txsa() (Sabrina Dubroca) [2136170]
|
||||||
|
- macsec: always read MACSEC_SA_ATTR_PN as a u64 (Sabrina Dubroca) [2136170]
|
||||||
|
- macsec: limit replay window size with XPN (Sabrina Dubroca) [2136170]
|
||||||
|
- macsec: fix error message in macsec_add_rxsa and _txsa (Sabrina Dubroca) [2136170]
|
||||||
|
- macsec: fix NULL deref in macsec_add_rxsa (Sabrina Dubroca) [2136170]
|
||||||
|
- iavf: Fix error handling in iavf_init_module() (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix race condition between iavf_shutdown and iavf_remove (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Do not restart Tx queues after reset task failure (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix a crash during reset task (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix VF driver counting VLAN 0 filters (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Change information about device removal in dmesg (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Replace __FUNCTION__ with __func__ (Stefan Assmann) [2104467]
|
||||||
|
- net: Remove the obsolte u64_stats_fetch_*_irq() users (drivers). (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix set max MTU size with port VLAN and jumbo frames (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix bad page state (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix cached head and tail value for iavf_get_tx_pending (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Detach device during reset task (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix race between iavf_close and iavf_reset_task (Stefan Assmann) [2104467]
|
||||||
|
- net: ethernet: move from strlcpy with unused retval to strscpy (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix 'tc qdisc show' listing too many queues (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix max_rate limiting (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Check for duplicate TC flower filter before parsing (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Fix handling of dummy receive descriptors (Stefan Assmann) [2104467]
|
||||||
|
- iavf: Disallow changing rx/tx-frames and rx/tx-frames-irq (Stefan Assmann) [2104467]
|
||||||
|
- intel/iavf:fix repeated words in comments (Stefan Assmann) [2104467]
|
||||||
|
- intel: remove unused macros (Stefan Assmann) [2104467]
|
||||||
|
|
||||||
* Thu Dec 22 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-222.el9]
|
* Thu Dec 22 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-222.el9]
|
||||||
- Bluetooth: Fix HCIGETDEVINFO regression (Gopal Tiwari) [2124521]
|
- Bluetooth: Fix HCIGETDEVINFO regression (Gopal Tiwari) [2124521]
|
||||||
- Bluetooth: hci_sync: Fix hci_read_buffer_size_sync (Gopal Tiwari) [2124521]
|
- Bluetooth: hci_sync: Fix hci_read_buffer_size_sync (Gopal Tiwari) [2124521]
|
||||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
|||||||
SHA512 (linux-5.14.0-222.el9.tar.xz) = 5a98f4228bb53023cc1cbfbc54c73a4c6024690cdb3f8659775a8d599169a36cc79c6503dde234b67ec83ce82bf4de6856697b6661bc44fb763f22821731b1ce
|
SHA512 (linux-5.14.0-223.el9.tar.xz) = 399fd3d6f3f2628806363b7bf619db6458e1c8ac42ad48cf04ef2a746a52ef9036bf61ab32d6d131e0def8371a1165469db2d7e0d7f3cccf3e4167ce0bdd73bb
|
||||||
SHA512 (kernel-abi-stablelists-5.14.0-222.el9.tar.bz2) = 58bb2b879e9c5643f373d0aa82ef89256b965d23c2c47c9a0c1a8a7136d1f6c183777af8245ae65fdec267d49fe1905a133a6f62334e8d73fc636377846d03cd
|
SHA512 (kernel-abi-stablelists-5.14.0-223.el9.tar.bz2) = 29b2957d256c27dd33f288365ab21bff7f9ddc18ccccd3706ff26dde108d09d72f3da23df479ce2c3ca27afc4c404c66710f7ad23174bf6e805226980ddeda33
|
||||||
SHA512 (kernel-kabi-dw-5.14.0-222.el9.tar.bz2) = 77cbaed5749f6ac116bfb26c4c5ab504b40bc26adc019da4d6f588a42d7b838202bbfeca550485a7f5d8d82d385efc7bad2c88e1ea7fa0e858be2633b3ab7543
|
SHA512 (kernel-kabi-dw-5.14.0-223.el9.tar.bz2) = d649ee286f8e5d8fe0aa1bbb9878a10821ba9826682c4ae21c5749cf7063e7980e9c5df9a91764b52092690b1e9e3274f7c749504f084a8691a7ca33c4c11f18
|
||||||
|
Loading…
Reference in New Issue
Block a user