kernel-rt-5.14.0-71.rt21.71.el9
* Wed Mar 09 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-71.rt21.71.el9] - redhat: Update RTBZ for 9.1 cycle (Juri Lelli) - redhat: Add kernel-rt 9.1 changelog as a copy of 9.0 (Juri Lelli) - 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, rhbz#2061574
This commit is contained in:
parent
66a1c58d4f
commit
7049f4610d
@ -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
|
||||
@ -44,4 +44,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.70
|
||||
RTBUILD:=.71
|
||||
|
41
kernel.spec
41
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.rt21.70.el9
|
||||
%define pkgrelease 71.rt21.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.rt21.70%{?buildid}%{?dist}
|
||||
%define specrelease 71.rt21.71%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -706,7 +706,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-70.rt21.70.el9.tar.xz
|
||||
Source0: linux-5.14.0-71.rt21.71.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1416,8 +1416,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-70.rt21.70.el9 -c
|
||||
mv linux-5.14.0-70.rt21.70.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-71.rt21.71.el9 -c
|
||||
mv linux-5.14.0-71.rt21.71.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -3074,6 +3074,35 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Wed Mar 09 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-71.rt21.71.el9]
|
||||
- redhat: Update RTBZ for 9.1 cycle (Juri Lelli)
|
||||
- redhat: Add kernel-rt 9.1 changelog as a copy of 9.0 (Juri Lelli)
|
||||
- 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)
|
||||
|
||||
* Fri Feb 25 2022 Juri Lelli <juri.lelli@redhat.com> [5.14.0-70.rt21.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]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-70.rt21.70.el9.tar.xz) = 6bfbd49e33183ab1161ee1a3f9304402742ddf4ac0fa1a0691f7dd5a2e8ac7b193ae2e100a8d354317d9d51de4c09922dc5c0bc112618c794a7d046cc01b18a0
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-70.tar.bz2) = 64751d94b67e8a70707312409750aca1c2515c3d01ba042d2028d0177fcaea3da2ca2ca65b7617e93e051d3be77cbe76a7400bef7e094071f608e613e1dd61b2
|
||||
SHA512 (kernel-kabi-dw-5.14.0-70.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
SHA512 (linux-5.14.0-71.rt21.71.el9.tar.xz) = b0204f624ef2f047a8a07418eadc964e261c6f0970137b4037daef578852e23e759d4e1d26de49d93d74cc34ee3de3491dd32978ca23497007c96bc8c85645bb
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-71.tar.bz2) = 36e9df09ca74edaaf7d5c81e8e3051748c33dc5ed8535078431b8e57b19bb9770b5a3f3a8036975568190330dc8094a45aa604fac57ed9210b454025ae3f4f6a
|
||||
SHA512 (kernel-kabi-dw-5.14.0-71.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
|
Loading…
Reference in New Issue
Block a user