From a7adf1cd2f8c6518ffce5e239d710475f39c1577 Mon Sep 17 00:00:00 2001 From: Patrick Talbert Date: Tue, 8 Mar 2022 17:46:13 +0000 Subject: [PATCH] kernel-5.14.0-71.el9 * Tue Mar 08 2022 Patrick Talbert [5.14.0-71.el9] - CI: Build coverage RPMs on c9s environment (Veronika Kabatova) - md: use default_groups in kobj_type (Nigel Croxon) [2042797] - md: Move alloc/free acct bioset in to personality (Nigel Croxon) [2042797] - md: fix spelling of "its" (Nigel Croxon) [2042797] - md: raid456 add nowait support (Nigel Croxon) [2042797] - md: raid10 add nowait support (Nigel Croxon) [2042797] - md: raid1 add nowait support (Nigel Croxon) [2042797] - md: add support for REQ_NOWAIT (Nigel Croxon) [2042797] - md: drop queue limitation for RAID1 and RAID10 (Nigel Croxon) [2042797] - md/raid5: play nice with PREEMPT_RT (Nigel Croxon) [2042797] - md/raid1: fix missing bitmap update w/o WriteMostly devices (Nigel Croxon) [2042797] - md: fix double free of mddev->private in autorun_array() (Nigel Croxon) [2042797] - md: fix update super 1.0 on rdev size change (Nigel Croxon) [2042797] - raid5-ppl: use swap() to make code cleaner (Nigel Croxon) [2042797] - md/bitmap: don't set max_write_behind if there is no write mostly device (Nigel Croxon) [2042797] - md: update superblock after changing rdev flags in state_store (Nigel Croxon) [2042797] - md: remove unused argument from md_new_event (Nigel Croxon) [2042797] - md/raid5: call roundup_pow_of_two in raid5_run (Nigel Croxon) [2042797] - md/raid1: use rdev in raid1_write_request directly (Nigel Croxon) [2042797] - md/raid1: only allocate write behind bio fof WriteMostly device (Nigel Croxon) [2042797] - md: properly unwind when failing to add the kobject in md_alloc (Nigel Croxon) [2042797] - md: extend disks_mutex coverage (Nigel Croxon) [2042797] - md: add the bitmap group to the default groups for the md kobject (Nigel Croxon) [2042797] - md: add error handling support for add_disk() (Nigel Croxon) [2042797] - redhat: Bump RHEL_MINOR for 9.1 (Patrick Talbert) Resolves: rhbz#2042797 Signed-off-by: Patrick Talbert --- Makefile.rhelver | 4 ++-- kernel.spec | 39 +++++++++++++++++++++++++++++++++------ sources | 6 +++--- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/Makefile.rhelver b/Makefile.rhelver index 3c4176747..8c0409a75 100644 --- a/Makefile.rhelver +++ b/Makefile.rhelver @@ -1,5 +1,5 @@ RHEL_MAJOR = 9 -RHEL_MINOR = 0 +RHEL_MINOR = 1 # # RHEL_RELEASE @@ -12,7 +12,7 @@ RHEL_MINOR = 0 # # Use this spot to avoid future merge conflicts. # Do not trim this comment. -RHEL_RELEASE = 70 +RHEL_RELEASE = 71 # # Early y+1 numbering diff --git a/kernel.spec b/kernel.spec index d1619e3e2..c6ac2689c 100755 --- a/kernel.spec +++ b/kernel.spec @@ -79,7 +79,7 @@ Summary: The Linux kernel # the --with-release option overrides this setting.) %define debugbuildsenabled 1 -%global distro_build 70 +%global distro_build 71 %if 0%{?fedora} %define secure_boot_arch x86_64 @@ -123,13 +123,13 @@ Summary: The Linux kernel %define kversion 5.14 %define rpmversion 5.14.0 -%define pkgrelease 70.el9 +%define pkgrelease 71.el9 # This is needed to do merge window version magic %define patchlevel 14 # allow pkg_release to have configurable %%{?dist} tag -%define specrelease 70%{?buildid}%{?dist} +%define specrelease 71%{?buildid}%{?dist} %define pkg_release %{specrelease} @@ -678,7 +678,7 @@ BuildRequires: lld # exact git commit you can run # # xzcat -qq ${TARBALL} | git get-tar-commit-id -Source0: linux-5.14.0-70.el9.tar.xz +Source0: linux-5.14.0-71.el9.tar.xz Source1: Makefile.rhelver @@ -1345,8 +1345,8 @@ ApplyOptionalPatch() fi } -%setup -q -n kernel-5.14.0-70.el9 -c -mv linux-5.14.0-70.el9 linux-%{KVERREL} +%setup -q -n kernel-5.14.0-71.el9 -c +mv linux-5.14.0-71.el9 linux-%{KVERREL} cd linux-%{KVERREL} cp -a %{SOURCE1} . @@ -2945,6 +2945,33 @@ fi # # %changelog +* Tue Mar 08 2022 Patrick Talbert [5.14.0-71.el9] +- CI: Build coverage RPMs on c9s environment (Veronika Kabatova) +- md: use default_groups in kobj_type (Nigel Croxon) [2042797] +- md: Move alloc/free acct bioset in to personality (Nigel Croxon) [2042797] +- md: fix spelling of "its" (Nigel Croxon) [2042797] +- md: raid456 add nowait support (Nigel Croxon) [2042797] +- md: raid10 add nowait support (Nigel Croxon) [2042797] +- md: raid1 add nowait support (Nigel Croxon) [2042797] +- md: add support for REQ_NOWAIT (Nigel Croxon) [2042797] +- md: drop queue limitation for RAID1 and RAID10 (Nigel Croxon) [2042797] +- md/raid5: play nice with PREEMPT_RT (Nigel Croxon) [2042797] +- md/raid1: fix missing bitmap update w/o WriteMostly devices (Nigel Croxon) [2042797] +- md: fix double free of mddev->private in autorun_array() (Nigel Croxon) [2042797] +- md: fix update super 1.0 on rdev size change (Nigel Croxon) [2042797] +- raid5-ppl: use swap() to make code cleaner (Nigel Croxon) [2042797] +- md/bitmap: don't set max_write_behind if there is no write mostly device (Nigel Croxon) [2042797] +- md: update superblock after changing rdev flags in state_store (Nigel Croxon) [2042797] +- md: remove unused argument from md_new_event (Nigel Croxon) [2042797] +- md/raid5: call roundup_pow_of_two in raid5_run (Nigel Croxon) [2042797] +- md/raid1: use rdev in raid1_write_request directly (Nigel Croxon) [2042797] +- md/raid1: only allocate write behind bio fof WriteMostly device (Nigel Croxon) [2042797] +- md: properly unwind when failing to add the kobject in md_alloc (Nigel Croxon) [2042797] +- md: extend disks_mutex coverage (Nigel Croxon) [2042797] +- md: add the bitmap group to the default groups for the md kobject (Nigel Croxon) [2042797] +- md: add error handling support for add_disk() (Nigel Croxon) [2042797] +- redhat: Bump RHEL_MINOR for 9.1 (Patrick Talbert) + * Thu Feb 24 2022 Herton R. Krzesinski [5.14.0-70.el9] - stmmac/intel: mark driver as tech preview (Mark Salter) [2045594] - net: stmmac: Add GFP_DMA32 for rx buffers if no 64 capability (Mark Salter) [2045594] diff --git a/sources b/sources index e377c136e..6586940e5 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ -SHA512 (linux-5.14.0-70.el9.tar.xz) = be8fba11daa0392992ba3bd14cb57e43b768cda141a8a83f2d060303197d688a2ce99edcf55f33b4582c344c40584a3b6296c48e4b5fae5551c9bd98bf1a2999 -SHA512 (kernel-abi-stablelists-5.14.0-70.tar.bz2) = 20a81c0687a543194a51de11393815777b2cf343e8b50259b52fba39dc417a38703abd09fe400fa2778fc4d20897cdd7b0eda86d7f3b51926721db089fa684b3 -SHA512 (kernel-kabi-dw-5.14.0-70.tar.bz2) = 5f429e638c64a753c2bb14edd3d465ddc77b5807129396f68f31b15e4876cc6416df631737b176d958ad6e21f1a87bb46b50f179fab85040dc04e137210d5c95 +SHA512 (linux-5.14.0-71.el9.tar.xz) = d2dd71d0b27e74169f04ec4a6bd58535e7423409982c8ee4c6b07823c1dbe2ec94dabc9dfeb065464b555dc457297d9b7e40e643e3b952fae255f9eab3045f53 +SHA512 (kernel-abi-stablelists-5.14.0-71.tar.bz2) = 8a5669bebeb75a42e80b4667a36c67a08790252513d990cdc37248d9c1bf3d683bdb83f0de65af3dc1ef3185a982f718e4269bfc3ab6b8fc95ae9a2ab9d24197 +SHA512 (kernel-kabi-dw-5.14.0-71.tar.bz2) = b07e3d6617cc434bf03eb165691b8b64418260e0a97bf3da3959aa03d142ff345c94b4a0f0856246d2b2c6a6a713fd6495e9f2cb73244cf4cfc5a4b7525e7674