forked from rpms/kernel
kernel-5.14.0-150.el9
* Fri Aug 19 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-150.el9] - CI: Switch to c9s container image on quay.io (Michael Hofmann) - KVM: x86: nSVM: implement nested LBR virtualization (Emanuele Giuseppe Esposito) [2079722] - KVM: x86: nSVM: correctly virtualize LBR msrs when L2 is running (Emanuele Giuseppe Esposito) [2079722] - kvm: x86: SVM: use vmcb* instead of svm->vmcb where it makes sense (Emanuele Giuseppe Esposito) [2079722] - KVM: x86: nSVM: implement nested VMLOAD/VMSAVE (Emanuele Giuseppe Esposito) [2079722] - nfs: only issue commit in DIO codepath if we have uncommitted data (Jeffrey Layton) [2028370] - nfs: always check dreq->error after a commit (Jeffrey Layton) [2028370] - nfs: add new nfs_direct_req tracepoint events (Jeffrey Layton) [2028370] - nfsd: eliminate the NFSD_FILE_BREAK_* flags (Jeffrey Layton) [2107360] - NFSD: Clean up the show_nf_flags() macro (Jeffrey Layton) [2107360] - vmxnet3: do not reschedule napi for rx processing (Kamal Heib) [2115062] - Revert "ACPI: APEI: explicit init of HEST and GHES in apci_init()" (Mark Langsdorf) [2115261] - Revert "ACPI: APEI: rename ghes_init() with an "acpi_" prefix" (Mark Langsdorf) [2115261] - KVM: selftests: Disable rseq_test for all architectures (Gavin Shan) [2116654] - mm: Fix CVE-2022-2590 by reverting "mm/shmem: unconditionally set pte dirty in mfill_atomic_install_pte" (David Hildenbrand) [2116301] {CVE-2022-2590} - scsi: megaraid: Clear READ queue map's nr_queues (Tomas Henzl) [2103830] - SUNRPC release the transport of a relocated task with an assigned transport (Scott Mayhew) [2069732] - SUNRPC don't resend a task on an offlined transport (Scott Mayhew) [2069732] - Documentation: Describe net.ipv4.tcp_reflect_tos. (Guillaume Nault) [2070198] - drm/amd/display: Fix new dmub notification enabling in DM (Mika Penttilä) [2107633] - sfc: fix kernel panic when creating VF (Íñigo Huguet) [2104536] - netdevsim: don't overwrite read only ethtool parms (Petr Oros) [2112332] - netdevsim: fix uninit value in nsim_drv_configure_vfs() (Petr Oros) [2112332] - netdevsim: rename 'driver' entry points (Petr Oros) [2112332] - netdevsim: move max vf config to dev (Petr Oros) [2112332] - netdevsim: move details of vf config to dev (Petr Oros) [2112332] - netdevsim: move vfconfig to nsim_dev (Petr Oros) [2112332] - netdevsim: take rtnl_lock when assigning num_vfs (Petr Oros) [2112332] - netdevsim: remove max_vfs dentry (Petr Oros) [2112332] - netdevsim: make array res_ids static const, makes object smaller (Petr Oros) [2112332] - CI: Add automotive checks (Veronika Kabatova) - fs: dlm: fix build with CONFIG_IPV6 disabled (Alexander Aring) [2026474] - fs: dlm: don't call kernel_getpeername() in error_report() (Alexander Aring) [2026474] - fs: dlm: use sk->sk_socket instead of con->sock (Alexander Aring) [2026474] Resolves: rhbz#2079722, rhbz#2028370, rhbz#2107360, rhbz#2115062, rhbz#2115261, rhbz#2116654, rhbz#2116301, rhbz#2103830, rhbz#2069732, rhbz#2070198, rhbz#2107633, rhbz#2104536, rhbz#2112332, rhbz#2026474 Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
parent
4cb92d66c9
commit
146f692ae4
@ -12,7 +12,7 @@ RHEL_MINOR = 1
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 149
|
||||
RHEL_RELEASE = 150
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
|
46
kernel.spec
46
kernel.spec
@ -121,13 +121,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 149.el9
|
||||
%define pkgrelease 150.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 149%{?buildid}%{?dist}
|
||||
%define specrelease 150%{?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-149.el9.tar.xz
|
||||
Source0: linux-5.14.0-150.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1351,8 +1351,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-149.el9 -c
|
||||
mv linux-5.14.0-149.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-150.el9 -c
|
||||
mv linux-5.14.0-150.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -3018,6 +3018,42 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Fri Aug 19 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-150.el9]
|
||||
- CI: Switch to c9s container image on quay.io (Michael Hofmann)
|
||||
- KVM: x86: nSVM: implement nested LBR virtualization (Emanuele Giuseppe Esposito) [2079722]
|
||||
- KVM: x86: nSVM: correctly virtualize LBR msrs when L2 is running (Emanuele Giuseppe Esposito) [2079722]
|
||||
- kvm: x86: SVM: use vmcb* instead of svm->vmcb where it makes sense (Emanuele Giuseppe Esposito) [2079722]
|
||||
- KVM: x86: nSVM: implement nested VMLOAD/VMSAVE (Emanuele Giuseppe Esposito) [2079722]
|
||||
- nfs: only issue commit in DIO codepath if we have uncommitted data (Jeffrey Layton) [2028370]
|
||||
- nfs: always check dreq->error after a commit (Jeffrey Layton) [2028370]
|
||||
- nfs: add new nfs_direct_req tracepoint events (Jeffrey Layton) [2028370]
|
||||
- nfsd: eliminate the NFSD_FILE_BREAK_* flags (Jeffrey Layton) [2107360]
|
||||
- NFSD: Clean up the show_nf_flags() macro (Jeffrey Layton) [2107360]
|
||||
- vmxnet3: do not reschedule napi for rx processing (Kamal Heib) [2115062]
|
||||
- Revert "ACPI: APEI: explicit init of HEST and GHES in apci_init()" (Mark Langsdorf) [2115261]
|
||||
- Revert "ACPI: APEI: rename ghes_init() with an "acpi_" prefix" (Mark Langsdorf) [2115261]
|
||||
- KVM: selftests: Disable rseq_test for all architectures (Gavin Shan) [2116654]
|
||||
- mm: Fix CVE-2022-2590 by reverting "mm/shmem: unconditionally set pte dirty in mfill_atomic_install_pte" (David Hildenbrand) [2116301] {CVE-2022-2590}
|
||||
- scsi: megaraid: Clear READ queue map's nr_queues (Tomas Henzl) [2103830]
|
||||
- SUNRPC release the transport of a relocated task with an assigned transport (Scott Mayhew) [2069732]
|
||||
- SUNRPC don't resend a task on an offlined transport (Scott Mayhew) [2069732]
|
||||
- Documentation: Describe net.ipv4.tcp_reflect_tos. (Guillaume Nault) [2070198]
|
||||
- drm/amd/display: Fix new dmub notification enabling in DM (Mika Penttilä) [2107633]
|
||||
- sfc: fix kernel panic when creating VF (Íñigo Huguet) [2104536]
|
||||
- netdevsim: don't overwrite read only ethtool parms (Petr Oros) [2112332]
|
||||
- netdevsim: fix uninit value in nsim_drv_configure_vfs() (Petr Oros) [2112332]
|
||||
- netdevsim: rename 'driver' entry points (Petr Oros) [2112332]
|
||||
- netdevsim: move max vf config to dev (Petr Oros) [2112332]
|
||||
- netdevsim: move details of vf config to dev (Petr Oros) [2112332]
|
||||
- netdevsim: move vfconfig to nsim_dev (Petr Oros) [2112332]
|
||||
- netdevsim: take rtnl_lock when assigning num_vfs (Petr Oros) [2112332]
|
||||
- netdevsim: remove max_vfs dentry (Petr Oros) [2112332]
|
||||
- netdevsim: make array res_ids static const, makes object smaller (Petr Oros) [2112332]
|
||||
- CI: Add automotive checks (Veronika Kabatova)
|
||||
- fs: dlm: fix build with CONFIG_IPV6 disabled (Alexander Aring) [2026474]
|
||||
- fs: dlm: don't call kernel_getpeername() in error_report() (Alexander Aring) [2026474]
|
||||
- fs: dlm: use sk->sk_socket instead of con->sock (Alexander Aring) [2026474]
|
||||
|
||||
* Fri Aug 19 2022 Herton R. Krzesinski <herton@redhat.com> [5.14.0-149.el9]
|
||||
- netfilter: h323: merge nat hook pointers into one (Florian Westphal) [2111270]
|
||||
- netfilter: nf_conntrack: use rcu accessors where needed (Florian Westphal) [2111270]
|
||||
|
6
sources
6
sources
@ -1,3 +1,3 @@
|
||||
SHA512 (linux-5.14.0-149.el9.tar.xz) = 211d38cd4de5019a106b0973b8bd753979a48e9a666c2442b77b5ac03fa373adf8e5f4110cb2ca1c055eeb368b93d49fb7e8fdba148474b12030523ba934c928
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-149.el9.tar.bz2) = d2c2441b06eae724c43dcf69f56d8ec707e5f2b1639fa8720889da2b0ff64e309af391bed1a1120d670fd115933ac83d97e0473551e7a1459e9d6472c294e9a9
|
||||
SHA512 (kernel-kabi-dw-5.14.0-149.el9.tar.bz2) = 3a735e620f194c128f2437afb89c86bb8acd62e02a608f152fc83f8eb51d5d5580a94618437b93a478830c56e6e6c73776ad285b18f8ac0a4403f0986d45cf3a
|
||||
SHA512 (linux-5.14.0-150.el9.tar.xz) = 36a832ba4a5fab4e44b4b306408b1654a9e6d596d2ceffab980039cc3abc17bec38eb2c561d8d87e02adb24ad56d78e8a0eb91385968d6f84abc8ae4f5ac9f03
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-150.el9.tar.bz2) = 45cfb7b169add79673b0b9230f719be9fb17f93a9983d09eb3a5bc8323f005dea75e7ec0f670e825d7adec9fa95c1f5778861ca40479b618a730562b4c68ade4
|
||||
SHA512 (kernel-kabi-dw-5.14.0-150.el9.tar.bz2) = 128a38966db4182a119b784f11c17794e20469617e153c03af69b005804ec50069412e3109689dccdf50388a22c92830acaad91261cda016d128d2f4d6807d68
|
||||
|
Loading…
Reference in New Issue
Block a user