forked from rpms/kernel
1
0
Fork 0

kernel-5.14.0-29.el9

* Thu Dec 09 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-29.el9]
- posix-cpu-timers: Prevent spuriously armed 0-value itimer (Phil Auld) [2022896]
- hrtimer: Unbreak hrtimer_force_reprogram() (Phil Auld) [2022896]
- hrtimer: Use raw_cpu_ptr() in clock_was_set() (Phil Auld) [2022896]
- clocksource: Make clocksource watchdog test safe for slow-HZ systems (Phil Auld) [2022896]
- posix-cpu-timers: Recalc next expiration when timer_settime() ends up not queueing (Phil Auld) [2022896]
- posix-cpu-timers: Consolidate timer base accessor (Phil Auld) [2022896]
- posix-cpu-timers: Remove confusing return value override (Phil Auld) [2022896]
- posix-cpu-timers: Force next expiration recalc after itimer reset (Phil Auld) [2022896]
- posix-cpu-timers: Force next_expiration recalc after timer deletion (Phil Auld) [2022896]
- posix-cpu-timers: Assert task sighand is locked while starting cputime counter (Phil Auld) [2022896]
- posix-timers: Remove redundant initialization of variable ret (Phil Auld) [2022896]
- hrtimer: Avoid more SMP function calls in clock_was_set() (Phil Auld) [2022896]
- hrtimer: Avoid unnecessary SMP function calls in clock_was_set() (Phil Auld) [2022896]
- hrtimer: Add bases argument to clock_was_set() (Phil Auld) [2022896]
- time/timekeeping: Avoid invoking clock_was_set() twice (Phil Auld) [2022896]
- timekeeping: Distangle resume and clock-was-set events (Phil Auld) [2022896]
- timerfd: Provide timerfd_resume() (Phil Auld) [2022896]
- hrtimer: Force clock_was_set() handling for the HIGHRES=n, NOHZ=y case (Phil Auld) [2022896]
- hrtimer: Ensure timerfd notification for HIGHRES=n (Phil Auld) [2022896]
- hrtimer: Consolidate reprogramming code (Phil Auld) [2022896]
- hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() (Phil Auld) [2022896]
Resolves: rhbz#2022896

Signed-off-by: Herton R. Krzesinski <herton@redhat.com>
This commit is contained in:
Herton R. Krzesinski 2021-12-09 18:27:34 +00:00
parent a602e02d42
commit 443c4a5062
3 changed files with 33 additions and 10 deletions

View File

@ -12,7 +12,7 @@ RHEL_MINOR = 0
#
# Use this spot to avoid future merge conflicts.
# Do not trim this comment.
RHEL_RELEASE = 28
RHEL_RELEASE = 29
#
# Early y+1 numbering

View File

@ -85,7 +85,7 @@ Summary: The Linux kernel
# the --with-release option overrides this setting.)
%define debugbuildsenabled 1
%global distro_build 28
%global distro_build 29
%if 0%{?fedora}
%define secure_boot_arch x86_64
@ -129,13 +129,13 @@ Summary: The Linux kernel
%define kversion 5.14
%define rpmversion 5.14.0
%define pkgrelease 28.el9
%define pkgrelease 29.el9
# This is needed to do merge window version magic
%define patchlevel 14
# allow pkg_release to have configurable %%{?dist} tag
%define specrelease 28%{?buildid}%{?dist}
%define specrelease 29%{?buildid}%{?dist}
%define pkg_release %{specrelease}
@ -676,7 +676,7 @@ BuildRequires: lld
# exact git commit you can run
#
# xzcat -qq ${TARBALL} | git get-tar-commit-id
Source0: linux-5.14.0-28.el9.tar.xz
Source0: linux-5.14.0-29.el9.tar.xz
Source1: Makefile.rhelver
@ -1361,8 +1361,8 @@ ApplyOptionalPatch()
fi
}
%setup -q -n kernel-5.14.0-28.el9 -c
mv linux-5.14.0-28.el9 linux-%{KVERREL}
%setup -q -n kernel-5.14.0-29.el9 -c
mv linux-5.14.0-29.el9 linux-%{KVERREL}
cd linux-%{KVERREL}
cp -a %{SOURCE1} .
@ -2951,6 +2951,29 @@ fi
#
#
%changelog
* Thu Dec 09 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-29.el9]
- posix-cpu-timers: Prevent spuriously armed 0-value itimer (Phil Auld) [2022896]
- hrtimer: Unbreak hrtimer_force_reprogram() (Phil Auld) [2022896]
- hrtimer: Use raw_cpu_ptr() in clock_was_set() (Phil Auld) [2022896]
- clocksource: Make clocksource watchdog test safe for slow-HZ systems (Phil Auld) [2022896]
- posix-cpu-timers: Recalc next expiration when timer_settime() ends up not queueing (Phil Auld) [2022896]
- posix-cpu-timers: Consolidate timer base accessor (Phil Auld) [2022896]
- posix-cpu-timers: Remove confusing return value override (Phil Auld) [2022896]
- posix-cpu-timers: Force next expiration recalc after itimer reset (Phil Auld) [2022896]
- posix-cpu-timers: Force next_expiration recalc after timer deletion (Phil Auld) [2022896]
- posix-cpu-timers: Assert task sighand is locked while starting cputime counter (Phil Auld) [2022896]
- posix-timers: Remove redundant initialization of variable ret (Phil Auld) [2022896]
- hrtimer: Avoid more SMP function calls in clock_was_set() (Phil Auld) [2022896]
- hrtimer: Avoid unnecessary SMP function calls in clock_was_set() (Phil Auld) [2022896]
- hrtimer: Add bases argument to clock_was_set() (Phil Auld) [2022896]
- time/timekeeping: Avoid invoking clock_was_set() twice (Phil Auld) [2022896]
- timekeeping: Distangle resume and clock-was-set events (Phil Auld) [2022896]
- timerfd: Provide timerfd_resume() (Phil Auld) [2022896]
- hrtimer: Force clock_was_set() handling for the HIGHRES=n, NOHZ=y case (Phil Auld) [2022896]
- hrtimer: Ensure timerfd notification for HIGHRES=n (Phil Auld) [2022896]
- hrtimer: Consolidate reprogramming code (Phil Auld) [2022896]
- hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() (Phil Auld) [2022896]
* Wed Dec 08 2021 Herton R. Krzesinski <herton@redhat.com> [5.14.0-28.el9]
- rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr (Waiman Long) [2022806]
- efi: Change down_interruptible() in virt_efi_reset_system() to down_trylock() (Waiman Long) [2022806]

View File

@ -1,3 +1,3 @@
SHA512 (linux-5.14.0-28.el9.tar.xz) = 2d0c52f9136b9b7e72026dc188508bf1c93241fe563b65fa6c1d55e598ffc03d25b947bf0625d7ac61e3053e89158708f1c74a902c9b5b9fbdd9361d48781533
SHA512 (kernel-abi-stablelists-5.14.0-28.tar.bz2) = 1d413fe4dc4b7ac3c0b4c192c1faa6d1b521a1d9d047305401fb027ff1b2a69a94e30fe043fbe302f1d04150449ddad8c2dde18ff5e360f547de7fc43595f46b
SHA512 (kernel-kabi-dw-5.14.0-28.tar.bz2) = fa122c42ab5d0ce4e381274e62008bc1cd66be2cc1df978fc92869434d10a70dcb719cd89f3b47ea61b8eeaf5d714ced2ebf93ddcfa478c1faa6ad803e88a447
SHA512 (linux-5.14.0-29.el9.tar.xz) = 73da9b13e612cebe9120a54fb65d87b1323a25b1805de4402927bf5ff1b77eaa04bf4c25dddfd215573b742b813031bebaf9e2175dffd92355ba6d9d83af8370
SHA512 (kernel-abi-stablelists-5.14.0-29.tar.bz2) = 5221682dae2c4f555d53377a696582e6f492e23a1308ce343c63f6f448e27c3a4b02ed066b61a7f65aaab36ed5aec8147437ae00e1c1262c831a54ebdd247cc2
SHA512 (kernel-kabi-dw-5.14.0-29.tar.bz2) = 55b68abd5434ea20353e520e8a918935441958064102b57b59829e6f3e96aa012742e0a671feedd414cc9866a021852f520f467fc3e8f71e4e58e283d4a828a2