summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>2022-09-19 12:59:49 +0200
committerSebastian Andrzej Siewior <bigeasy@linutronix.de>2022-09-19 12:59:49 +0200
commit50c0aa2e217d2d285f7009a51a3984bf99feff82 (patch)
tree22d2d8d4f0ab278a8d987560127d8c061117872b
parent3774106e24999ae65bffa6de7383fa7e565aa531 (diff)
downloadlinux-rt-50c0aa2e217d2d285f7009a51a3984bf99feff82.tar.gz
[ANNOUNCE] v6.0-rc6-rt9v6.0-rc6-rt9-patches
Dear RT folks! I'm pleased to announce the v6.0-rc6-rt9 patch set. Changes since v6.0-rc6-rt8: - Drop a checkpatch patch. It has been superseded by another approach which is merged into the tip tree. Known issues - Valentin Schneider reported a few splats on ARM64, see https://lkml.kernel.org/r/20210810134127.1394269-1-valentin.schneider@arm.com The delta patch against v6.0-rc6-rt8 is appended below and can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.0/incr/patch-6.0-rc6-rt8-rt9.patch.xz You can get this release via the git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-rt-devel.git v6.0-rc6-rt9 The RT patch against v6.0-rc6 can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.0/older/patch-6.0-rc6-rt9.patch.xz The split quilt queue is available at: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.0/older/patches-6.0-rc6-rt9.tar.xz Sebastian Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
-rw-r--r--patches/Add_localversion_for_-RT_release.patch2
-rw-r--r--patches/checkpatch-Print-an-error-if-rwlock.h-is-included-di.patch30
-rw-r--r--patches/series4
3 files changed, 2 insertions, 34 deletions
diff --git a/patches/Add_localversion_for_-RT_release.patch b/patches/Add_localversion_for_-RT_release.patch
index c8061e5a5d82..8b36fd73f91a 100644
--- a/patches/Add_localversion_for_-RT_release.patch
+++ b/patches/Add_localversion_for_-RT_release.patch
@@ -15,4 +15,4 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
--- /dev/null
+++ b/localversion-rt
@@ -0,0 +1 @@
-+-rt8
++-rt9
diff --git a/patches/checkpatch-Print-an-error-if-rwlock.h-is-included-di.patch b/patches/checkpatch-Print-an-error-if-rwlock.h-is-included-di.patch
deleted file mode 100644
index ba5545e5f5ca..000000000000
--- a/patches/checkpatch-Print-an-error-if-rwlock.h-is-included-di.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
-Date: Tue, 16 Aug 2022 09:32:30 +0200
-Subject: [PATCH] checkpatch: Print an error if rwlock.h is included directly.
-
-rwlock.h shouldn't be included directly in source code. PREEMPT_RT uses
-a different implementation and this rwlock.h include breaks it.
-
-Add an error message if linux/rwlock.h is included.
-
-Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
-Link: https://lkml.kernel.org/r/20220816075118.173455-1-bigeasy@linutronix.de
----
- scripts/checkpatch.pl | 6 ++++++
- 1 file changed, 6 insertions(+)
-
---- a/scripts/checkpatch.pl
-+++ b/scripts/checkpatch.pl
-@@ -5749,6 +5749,12 @@ sub process {
- }
- }
-
-+# rwlock.h must not be included directly. It will be included via spinlock.h if needed.
-+ if ($rawline =~ /\#\s*include.*\<linux\/rwlock\.h/) {
-+ ERROR("INCLUDES_BAD_HEADER",
-+ "Please don't include rwlock.h directly, use spinlock.h if needed.\n" . $herecurr);
-+ }
-+
- # warn if <asm/foo.h> is #included and <linux/foo.h> is available and includes
- # itself <asm/foo.h> (uses RAW line)
- if ($tree && $rawline =~ m{^.\s*\#\s*include\s*\<asm\/(.*)\.h\>}) {
diff --git a/patches/series b/patches/series
index 3c1e42768e85..f607d9f5625d 100644
--- a/patches/series
+++ b/patches/series
@@ -13,14 +13,12 @@ genirq-Provide-generic_handle_domain_irq_safe.patch
0001-lib-vsprintf-Remove-static_branch_likely-from-__ptr_.patch
0002-lib-vsprintf-Initialize-vsprintf-s-pointer-hash-once.patch
locking-Detect-includes-rwlock.h-outside-of-spinlock.patch
+vduse-Remove-include-of-rwlock.h.patch
# Hacks to get ptrace to work.
signal-Don-t-disable-preemption-in-ptrace_stop-on-PR.patch
sched-Consider-task_struct-saved_state-in-wait_task_.patch
-checkpatch-Print-an-error-if-rwlock.h-is-included-di.patch
-vduse-Remove-include-of-rwlock.h.patch
-
# Vlastimil Babka [PATCH v2 0/5] mm/slub: fix validation races and cleanup locking
# 20220823170400.26546-1-vbabka@suse.cz
0001-mm-slub-move-free_debug_processing-further.patch