kernel-rt-5.14.0-29.rt21.29.el9
* Fri Dec 10 2021 Juri Lelli <juri.lelli@redhat.com> [5.14.0-29.rt21.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#2002474, rhbz#2022896
This commit is contained in:
parent
9cc8e5fa25
commit
45f88cf699
@ -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
|
||||
@ -44,4 +44,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.28
|
||||
RTBUILD:=.29
|
||||
|
35
kernel.spec
35
kernel.spec
@ -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.rt21.28.el9
|
||||
%define pkgrelease 29.rt21.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.rt21.28%{?buildid}%{?dist}
|
||||
%define specrelease 29.rt21.29%{?buildid}%{?dist}
|
||||
|
||||
%define pkg_release %{specrelease}
|
||||
|
||||
@ -704,7 +704,7 @@ BuildRequires: lld
|
||||
# exact git commit you can run
|
||||
#
|
||||
# xzcat -qq ${TARBALL} | git get-tar-commit-id
|
||||
Source0: linux-5.14.0-28.rt21.28.el9.tar.xz
|
||||
Source0: linux-5.14.0-29.rt21.29.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1432,8 +1432,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-28.rt21.28.el9 -c
|
||||
mv linux-5.14.0-28.rt21.28.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-29.rt21.29.el9 -c
|
||||
mv linux-5.14.0-29.rt21.29.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -3080,6 +3080,29 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Fri Dec 10 2021 Juri Lelli <juri.lelli@redhat.com> [5.14.0-29.rt21.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]
|
||||
|
||||
* Thu Dec 09 2021 Juri Lelli <juri.lelli@redhat.com> [5.14.0-28.rt21.28.el9]
|
||||
- rcu/tree: Protect rcu_rdp_is_offloaded() invocations on RT (Thomas Gleixner)
|
||||
- rcu: Fix rcu_dynticks_curr_cpu_in_eqs() vs noinstr (Waiman Long) [2022806]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-28.rt21.28.el9.tar.xz) = dff4790d8bed134c337576709f7c8fc549bff2d90d030b3cb1484e42a51f1a952833ecace8b85501153e6ebc44da247a3f0ff4887933212e86605a8313458224
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-28.tar.bz2) = ad3ac5e8423e45afd972f5f0c7e2de4f67f5b4d14d8d036297c11a05703374e076b5433901c8db48775c1b4f28a71150330eaa239697d745174ec6348fc2c74d
|
||||
SHA512 (kernel-kabi-dw-5.14.0-28.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
SHA512 (linux-5.14.0-29.rt21.29.el9.tar.xz) = cd8cf88cd7182c00ef2d88bbcc5f25cd7ab948f8c028caad9e874321c3274acff28de788da34f5539345c053012aa6bf5489cde94b50407687323c57834ec4cf
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-29.tar.bz2) = ba077e9db8def0f80a2543917cc03b61dd3ecdf3268a3bca1b4fe187bf3e03d83e57109046551b863c1b5731209a657f4e344b5c85ba482d18d60e3b5030a33b
|
||||
SHA512 (kernel-kabi-dw-5.14.0-29.tar.bz2) = c901529aff636abbc2aa5f289ec098a2a29c8507aa81ee649d1104592b8abad9f495db0e947dc36a84e043708a47373de35156b40b252281ef747f06e19ed914
|
||||
|
Loading…
Reference in New Issue
Block a user