kernel-rt-5.14.0-171.rt21.171.el9

* Mon Oct 03 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-171.rt21.171.el9]
- [rt] build kernel-rt-5.14.0-171.rt21.171.el9 [2125474]
- 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#2125474

Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
This commit is contained in:
Luis Claudio R. Goncalves 2022-10-03 11:54:36 -03:00
parent 1ccd81b1e4
commit 3aa755e51b
3 changed files with 42 additions and 10 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 = 170
RHEL_RELEASE = 171
#
# ZSTREAM
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
endif
endif
RTBUILD:=.170
RTBUILD:=.171

View File

@ -121,13 +121,13 @@ Summary: The Linux kernel
%define kversion 5.14
%define rpmversion 5.14.0
%define pkgrelease 170.rt21.170.el9
%define pkgrelease 171.rt21.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.rt21.170%{?buildid}%{?dist}
%define specrelease 171.rt21.171%{?buildid}%{?dist}
%define pkg_release %{specrelease}
@ -707,7 +707,7 @@ BuildRequires: lld
# exact git commit you can run
#
# xzcat -qq ${TARBALL} | git get-tar-commit-id
Source0: linux-5.14.0-170.rt21.170.el9.tar.xz
Source0: linux-5.14.0-171.rt21.171.el9.tar.xz
Source1: Makefile.rhelver
@ -1422,8 +1422,8 @@ ApplyOptionalPatch()
fi
}
%setup -q -n kernel-5.14.0-170.rt21.170.el9 -c
mv linux-5.14.0-170.rt21.170.el9 linux-%{KVERREL}
%setup -q -n kernel-5.14.0-171.rt21.171.el9 -c
mv linux-5.14.0-171.rt21.171.el9 linux-%{KVERREL}
cd linux-%{KVERREL}
cp -a %{SOURCE1} .
@ -3147,6 +3147,38 @@ fi
#
#
%changelog
* Mon Oct 03 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-171.rt21.171.el9]
- [rt] build kernel-rt-5.14.0-171.rt21.171.el9 [2125474]
- 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 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-170.rt21.170.el9]
- [rt] build kernel-rt-5.14.0-170.rt21.170.el9 [2125474]
- NFSv4.1 restrict GETATTR fs_location query to the main transport (Scott Mayhew) [2066372]

View File

@ -1,4 +1,4 @@
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
SHA512 (linux-5.14.0-170.rt21.170.el9.tar.xz) = 023d0239d1fa0584de557e8baa7247df8720cbdf66c4e76f06bc4d3e1453ef725ec676f8569efebdd6b2f23b7a1bd806a14cf729be61fa03173569458f2f5da9
SHA512 (kernel-abi-stablelists-5.14.0-170.rt21.170.el9.tar.bz2) = 22b325f1067eb9e8c7b064f921f90b82ade36bd34dabffdc03884699166adcc66ec455790cdf423332428a6501485c306688e42398f10d9b3ece167cdee069ec
SHA512 (kernel-kabi-dw-5.14.0-170.rt21.170.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578
SHA512 (linux-5.14.0-171.rt21.171.el9.tar.xz) = f6487591aa29112d93e1b35f32a30a753eee744de3175b59af4118508950713681b7872fd576eedeaf8f6a44aa81005740162f58a9d0527df9af9ba432a81a9f
SHA512 (kernel-abi-stablelists-5.14.0-171.rt21.171.el9.tar.bz2) = e44a61798ae8549d38b62de95516223cb29beb9d9533197c8a7e560824e0ec61228992255c1e8940ca3533b6eb7b33264b291f7446b24c8723368152f444e66f
SHA512 (kernel-kabi-dw-5.14.0-171.rt21.171.el9.tar.bz2) = 565f812fa83a756ef7b91219031cfe80b1e853f22b4ed38ada76aed482caaf89df35e4d220f45728392765a757f8b0798e3b5a57fee0114e1d0379e887772578