kernel-rt-5.14.0-101.rt21.101.el9
* Tue May 31 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-101.rt21.101.el9] - [rt] build kernel-rt-5.14.0-101.rt21.101.el9 [2061574] - redhat: Exclude cpufreq.h from kernel-headers (Patrick Talbert) - tools: Add kmem_cache_alloc_lru() (Waiman Long) [2085412] - tools: Move gfp.h and slab.h from radix-tree to lib (Waiman Long) [2085412] - mm: workingset: replace IRQ-off check with a lockdep assert. (Waiman Long) [2079537] - mm/memcg: disable migration instead of preemption in drain_all_stock(). (Waiman Long) [2079537] - mm/memcg: protect memcg_stock with a local_lock_t (Waiman Long) [2079537] - mm/memcg: opencode the inner part of obj_cgroup_uncharge_pages() in drain_obj_stock() (Waiman Long) [2079537] - mm/memcg: protect per-CPU counter by disabling preemption on PREEMPT_RT where needed. (Waiman Long) [2079537] - mm/memcg: disable threshold event handlers on PREEMPT_RT (Waiman Long) [2079537] - mm/memcg: revert ("mm/memcg: optimize user context object stock access") (Waiman Long) [2079537] - zsmalloc: replace get_cpu_var with local_lock (Waiman Long) [2079537] - zsmalloc: replace per zpage lock with pool->migrate_lock (Waiman Long) [2079537] - zsmalloc: remove zspage isolation for migration (Waiman Long) [2079537] - zsmalloc: move huge compressed obj from page to zspage (Waiman Long) [2079537] - zsmalloc: introduce obj_allocated (Waiman Long) [2079537] - zsmalloc: decouple class actions from zspage works (Waiman Long) [2079537] - zsmalloc: rename zs_stat_type to class_stat_type (Waiman Long) [2079537] - zsmalloc: introduce some helper functions (Waiman Long) [2079537] - memcg: better bounds on the memcg stats updates (Waiman Long) [2079537] - mm: unexport {,un}lock_page_memcg (Waiman Long) [2079537] - mm: unexport folio_memcg_{,un}lock (Waiman Long) [2079537] - zsmalloc: Stop using slab fields in struct page (Waiman Long) [2079537] Resolves: rhbz#2061574
This commit is contained in:
parent
e1b51d1ef5
commit
1b5af5b8f6
@ -12,7 +12,7 @@ RHEL_MINOR = 1
|
||||
#
|
||||
# Use this spot to avoid future merge conflicts.
|
||||
# Do not trim this comment.
|
||||
RHEL_RELEASE = 100
|
||||
RHEL_RELEASE = 101
|
||||
|
||||
#
|
||||
# ZSTREAM
|
||||
@ -66,4 +66,4 @@ ifneq ("$(ZSTREAM)", "yes")
|
||||
endif
|
||||
endif
|
||||
|
||||
RTBUILD:=.100
|
||||
RTBUILD:=.101
|
||||
|
40
kernel.spec
40
kernel.spec
@ -121,13 +121,13 @@ Summary: The Linux kernel
|
||||
%define kversion 5.14
|
||||
|
||||
%define rpmversion 5.14.0
|
||||
%define pkgrelease 100.rt21.100.el9
|
||||
%define pkgrelease 101.rt21.101.el9
|
||||
|
||||
# This is needed to do merge window version magic
|
||||
%define patchlevel 14
|
||||
|
||||
# allow pkg_release to have configurable %%{?dist} tag
|
||||
%define specrelease 100.rt21.100%{?buildid}%{?dist}
|
||||
%define specrelease 101.rt21.101%{?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-100.rt21.100.el9.tar.xz
|
||||
Source0: linux-5.14.0-101.rt21.101.el9.tar.xz
|
||||
|
||||
Source1: Makefile.rhelver
|
||||
|
||||
@ -1417,8 +1417,8 @@ ApplyOptionalPatch()
|
||||
fi
|
||||
}
|
||||
|
||||
%setup -q -n kernel-5.14.0-100.rt21.100.el9 -c
|
||||
mv linux-5.14.0-100.rt21.100.el9 linux-%{KVERREL}
|
||||
%setup -q -n kernel-5.14.0-101.rt21.101.el9 -c
|
||||
mv linux-5.14.0-101.rt21.101.el9 linux-%{KVERREL}
|
||||
|
||||
cd linux-%{KVERREL}
|
||||
cp -a %{SOURCE1} .
|
||||
@ -2863,6 +2863,7 @@ fi
|
||||
%if %{with_headers}
|
||||
%files headers
|
||||
/usr/include/*
|
||||
%exclude %{_includedir}/cpufreq.h
|
||||
%endif
|
||||
|
||||
%if %{with_cross_headers}
|
||||
@ -3108,8 +3109,33 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Fri May 27 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-100.rt21.100.el9]
|
||||
- [rt] build kernel-rt-5.14.0-100.rt21.100.el9 [2061574]
|
||||
* Tue May 31 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-101.rt21.101.el9]
|
||||
- [rt] build kernel-rt-5.14.0-101.rt21.101.el9 [2061574]
|
||||
|
||||
* Tue May 31 2022 Luis Claudio R. Goncalves <lgoncalv@redhat.com> [5.14.0-101.rt21.101.el9]
|
||||
- [rt] build kernel-rt-5.14.0-101.rt21.101.el9 [2061574]
|
||||
- redhat: Exclude cpufreq.h from kernel-headers (Patrick Talbert)
|
||||
- tools: Add kmem_cache_alloc_lru() (Waiman Long) [2085412]
|
||||
- tools: Move gfp.h and slab.h from radix-tree to lib (Waiman Long) [2085412]
|
||||
- mm: workingset: replace IRQ-off check with a lockdep assert. (Waiman Long) [2079537]
|
||||
- mm/memcg: disable migration instead of preemption in drain_all_stock(). (Waiman Long) [2079537]
|
||||
- mm/memcg: protect memcg_stock with a local_lock_t (Waiman Long) [2079537]
|
||||
- mm/memcg: opencode the inner part of obj_cgroup_uncharge_pages() in drain_obj_stock() (Waiman Long) [2079537]
|
||||
- mm/memcg: protect per-CPU counter by disabling preemption on PREEMPT_RT where needed. (Waiman Long) [2079537]
|
||||
- mm/memcg: disable threshold event handlers on PREEMPT_RT (Waiman Long) [2079537]
|
||||
- mm/memcg: revert ("mm/memcg: optimize user context object stock access") (Waiman Long) [2079537]
|
||||
- zsmalloc: replace get_cpu_var with local_lock (Waiman Long) [2079537]
|
||||
- zsmalloc: replace per zpage lock with pool->migrate_lock (Waiman Long) [2079537]
|
||||
- zsmalloc: remove zspage isolation for migration (Waiman Long) [2079537]
|
||||
- zsmalloc: move huge compressed obj from page to zspage (Waiman Long) [2079537]
|
||||
- zsmalloc: introduce obj_allocated (Waiman Long) [2079537]
|
||||
- zsmalloc: decouple class actions from zspage works (Waiman Long) [2079537]
|
||||
- zsmalloc: rename zs_stat_type to class_stat_type (Waiman Long) [2079537]
|
||||
- zsmalloc: introduce some helper functions (Waiman Long) [2079537]
|
||||
- memcg: better bounds on the memcg stats updates (Waiman Long) [2079537]
|
||||
- mm: unexport {,un}lock_page_memcg (Waiman Long) [2079537]
|
||||
- mm: unexport folio_memcg_{,un}lock (Waiman Long) [2079537]
|
||||
- zsmalloc: Stop using slab fields in struct page (Waiman Long) [2079537]
|
||||
|
||||
* Fri May 27 2022 Fernando Pacheco <fpacheco@redhat.com> [5.14.0-100.rt21.100.el9]
|
||||
- [rt] build kernel-rt-5.14.0-100.rt21.100.el9 [2061574]
|
||||
|
6
sources
6
sources
@ -1,4 +1,4 @@
|
||||
SHA512 (kernel-abi-whitelists-5.13.0-1.tar.bz2) = ceba454e1f590c1e4ef4115a75463ae3ac2c2aa7ec85fa14a2669d666c421483a38225ee19d7d72b4ac7032375741408b23543e43588538c80161ec0cf57051c
|
||||
SHA512 (linux-5.14.0-100.rt21.100.el9.tar.xz) = 018b2a832559f63f902ae060fe70fe91970e5ee0910ea7643c63b85fdc90964a71f2b9c31e9f70c0ea4325809e7f4e311596d96891880c0c8f81dd855bd6225a
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-100.rt21.100.el9.tar.bz2) = a814993005e2794f28412424e6e56dbe6d96cdeda22a13ac1929448abe8845df0733a9adc1a88d61c358bd66738a733ff9abdce70cb2f887a6809f5b2f59c23b
|
||||
SHA512 (kernel-kabi-dw-5.14.0-100.rt21.100.el9.tar.bz2) = f48c87da1305f27edb6978f09d3ddef1604f6f064094a9b8ab9c39a5f9451c9155419f680227af536db9172609e6c6f8ba7629f707088e64eeb01a43bbf4670e
|
||||
SHA512 (linux-5.14.0-101.rt21.101.el9.tar.xz) = 9e6baba2715bc997e3c3c6e5f4c2bc7ee0ccf926ded7ab3eb1b57f3f84329b3eabd0402bddb854c4f0400ad2d85ed72b915e3dcd570016ba63ccc4ef7fbe03d2
|
||||
SHA512 (kernel-abi-stablelists-5.14.0-101.rt21.101.el9.tar.bz2) = 3fa36d448dbfce4f5c508d79e21398a5198cdef3659cb81a630566fba0ab55a74d64eea1aa7d4918561cd9df111be57916571d068cb167577aacbb80e89b8cec
|
||||
SHA512 (kernel-kabi-dw-5.14.0-101.rt21.101.el9.tar.bz2) = c48e61982bd95c4a1453e0cdc93b7c8868d8aa715c33a9b017679511c6e92e724e35ba52f16d020bd844613bb6f27b4f3c561e14cec621fc116c61a65ea88138
|
||||
|
Loading…
Reference in New Issue
Block a user