forked from rpms/kernel
kernel-5.14.0-171.el9
* Sat Oct 01 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-171.el9] - irqchip/qcom-pdc: Drop open coded version of __assign_bit() (Eric Chanudet) [2105098] - irqchip/qcom-pdc: Fix broken locking (Eric Chanudet) [2105098] - irqchip/qcom-pdc: Kill qcom_pdc_translate helper (Eric Chanudet) [2105098] - irqchip/qcom-pdc: Kill non-wakeup irqdomain (Eric Chanudet) [2105098] - irqchip/qcom-pdc: Kill PDC_NO_PARENT_IRQ (Eric Chanudet) [2105098] - irqchip/qcom-pdc: Trim unused levels of the interrupt hierarchy (Eric Chanudet) [2105098] - drm/bochs: fix blanking (Michel Dänzer) [2124193] - opp: use list iterator only inside the loop (Eric Chanudet) [2112113] - opp: replace usage of found with dedicated list iterator variable (Eric Chanudet) [2112113] - PM: opp: simplify with dev_err_probe() (Eric Chanudet) [2112113] - OPP: call of_node_put() on error path in _bandwidth_supported() (Eric Chanudet) [2112113] - OPP: Add support of "opp-microwatt" for EM registration (Eric Chanudet) [2112113] - PM: EM: add macro to set .active_power() callback conditionally (Eric Chanudet) [2112113] - OPP: Add "opp-microwatt" supporting code (Eric Chanudet) [2112113] - dt-bindings: opp: Add "opp-microwatt" entry in the OPP (Eric Chanudet) [2112113] - dt-bindings: opp: Allow multi-worded OPP entry name (Eric Chanudet) [2112113] - dt-bindings: opp: Convert to DT schema (Eric Chanudet) [2112113] - opp: Expose of-node's name in debugfs (Eric Chanudet) [2112113] - opp: Fix return in _opp_add_static_v2() (Eric Chanudet) [2112113] - opp: Add more resource-managed variants of dev_pm_opp_of_add_table() (Eric Chanudet) [2112113] - opp: Change type of dev_pm_opp_attach_genpd(names) argument (Eric Chanudet) [2112113] - opp: Fix required-opps phandle array count check (Eric Chanudet) [2112113] - opp: Don't print an error if required-opps is missing (Eric Chanudet) [2112113] - thunderbolt: Add support for Intel Raptor Lake (Torez Smith) [2040039] - bonding: accept unsolicited NA message (Jonathan Toppins) [2115631] - bonding: add all node mcast address when slave up (Jonathan Toppins) [2115631] - bonding: use unspecified address if no available link local address (Jonathan Toppins) [2115631] - bonding: 3ad: make ad_ticks_per_sec a const (Jonathan Toppins) [2126214] - bonding: 802.3ad: fix no transmission of LACPDUs (Jonathan Toppins) [2126214] Resolves: rhbz#2105098, rhbz#2124193, rhbz#2112113, rhbz#2040039, rhbz#2115631, rhbz#2126214 Signed-off-by: Frantisek Hrbata <fhrbata@redhat.com>
This commit is contained in:
parent
5547d9e0c1
commit
a396e0c4a5
@ -12,7 +12,7 @@ RHEL_MINOR = 2
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 170
|
||||
RHEL_RELEASE = 171
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
|
41
kernel.spec
41
kernel.spec
@ -121,13 +121,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 170.el9
|
||||
%define pkgrelease 171.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 170%{?buildid}%{?dist}
|
||||
%define specrelease 171%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -679,7 +679,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-170.el9.tar.xz
|
||||
Source0: linux-5.14.0-171.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1351,8 +1351,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-170.el9 -c
|
||||
mv linux-5.14.0-170.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-171.el9 -c
|
||||
mv linux-5.14.0-171.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -3018,6 +3018,37 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Sat Oct 01 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-171.el9]
|
||||
- irqchip/qcom-pdc: Drop open coded version of __assign_bit() (Eric Chanudet) [2105098]
|
||||
- irqchip/qcom-pdc: Fix broken locking (Eric Chanudet) [2105098]
|
||||
- irqchip/qcom-pdc: Kill qcom_pdc_translate helper (Eric Chanudet) [2105098]
|
||||
- irqchip/qcom-pdc: Kill non-wakeup irqdomain (Eric Chanudet) [2105098]
|
||||
- irqchip/qcom-pdc: Kill PDC_NO_PARENT_IRQ (Eric Chanudet) [2105098]
|
||||
- irqchip/qcom-pdc: Trim unused levels of the interrupt hierarchy (Eric Chanudet) [2105098]
|
||||
- drm/bochs: fix blanking (Michel Dänzer) [2124193]
|
||||
- opp: use list iterator only inside the loop (Eric Chanudet) [2112113]
|
||||
- opp: replace usage of found with dedicated list iterator variable (Eric Chanudet) [2112113]
|
||||
- PM: opp: simplify with dev_err_probe() (Eric Chanudet) [2112113]
|
||||
- OPP: call of_node_put() on error path in _bandwidth_supported() (Eric Chanudet) [2112113]
|
||||
- OPP: Add support of "opp-microwatt" for EM registration (Eric Chanudet) [2112113]
|
||||
- PM: EM: add macro to set .active_power() callback conditionally (Eric Chanudet) [2112113]
|
||||
- OPP: Add "opp-microwatt" supporting code (Eric Chanudet) [2112113]
|
||||
- dt-bindings: opp: Add "opp-microwatt" entry in the OPP (Eric Chanudet) [2112113]
|
||||
- dt-bindings: opp: Allow multi-worded OPP entry name (Eric Chanudet) [2112113]
|
||||
- dt-bindings: opp: Convert to DT schema (Eric Chanudet) [2112113]
|
||||
- opp: Expose of-node's name in debugfs (Eric Chanudet) [2112113]
|
||||
- opp: Fix return in _opp_add_static_v2() (Eric Chanudet) [2112113]
|
||||
- opp: Add more resource-managed variants of dev_pm_opp_of_add_table() (Eric Chanudet) [2112113]
|
||||
- opp: Change type of dev_pm_opp_attach_genpd(names) argument (Eric Chanudet) [2112113]
|
||||
- opp: Fix required-opps phandle array count check (Eric Chanudet) [2112113]
|
||||
- opp: Don't print an error if required-opps is missing (Eric Chanudet) [2112113]
|
||||
- thunderbolt: Add support for Intel Raptor Lake (Torez Smith) [2040039]
|
||||
- bonding: accept unsolicited NA message (Jonathan Toppins) [2115631]
|
||||
- bonding: add all node mcast address when slave up (Jonathan Toppins) [2115631]
|
||||
- bonding: use unspecified address if no available link local address (Jonathan Toppins) [2115631]
|
||||
- bonding: 3ad: make ad_ticks_per_sec a const (Jonathan Toppins) [2126214]
|
||||
- bonding: 802.3ad: fix no transmission of LACPDUs (Jonathan Toppins) [2126214]
|
||||
|
||||
* Thu Sep 29 2022 Frantisek Hrbata <fhrbata@redhat.com> [5.14.0-170.el9]
|
||||
- NFSv4.1 restrict GETATTR fs_location query to the main transport (Scott Mayhew) [2066372]
|
||||
- NFSv4: Add an fattr allocation to _nfs4_discover_trunking() (Scott Mayhew) [2066372]
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-170.el9.tar.xz) = b4ec36e86685b1f51bb0544394c542fa44846e6b795bf4828c4bd8f48e1d6f5847b91e2586876ee028de101317de178b0e6ac923a5c44c8d02efe4e26366a314
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-170.el9.tar.bz2) = 99531911c0802c973fbfc8363081657327f6c4f78e5a6867d0eaf6afa0e6bce49101aa64a408e93820f4323058fa243f711e40f7dd6f759c4a070bb738237661
|
||||
SHA512 (kernel-kabi-dw-5.14.0-170.el9.tar.bz2) = 74b3c5b16232bc10cbf8b6f5fb277f8908eba4a6ef0d608b1c13423730dc3d61f22f2f703a568be5a5a93b1bdc73a48ceaa2daa04764115d1ef4efd07b243a91
|
||||
SHA512 (linux-5.14.0-171.el9.tar.xz) = 87671a9e9ba87784275b1867831f877d019a6a1a3151e1d0f5bb92cfe5a7f9b60770b46a4d311bdd96bd4e0d0e2fe6892f16ff91f1de1381a6aa06a1fa790843
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-171.el9.tar.bz2) = e9020e2c594a8ebaa4bfa5510560c9a65c102b1f7bc77c73496fb2b91acb775a7154aa036ea05d7bde2634143641a5de10495ca0a08ae50817f4455b8092b7c2
|
||||
SHA512 (kernel-kabi-dw-5.14.0-171.el9.tar.bz2) = 74b3c5b16232bc10cbf8b6f5fb277f8908eba4a6ef0d608b1c13423730dc3d61f22f2f703a568be5a5a93b1bdc73a48ceaa2daa04764115d1ef4efd07b243a91
|
||||
|
Loading…
Reference in New Issue
Block a user