]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.14-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Sep 2021 14:04:07 +0000 (16:04 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 16 Sep 2021 14:04:07 +0000 (16:04 +0200)
added patches:
tracing-osnoise-fix-missed-cpus_read_unlock-in-start_per_cpu_kthreads.patch

queue-5.14/series
queue-5.14/tracing-osnoise-fix-missed-cpus_read_unlock-in-start_per_cpu_kthreads.patch [new file with mode: 0644]

index 609eb6c6bd3c9d8c8fcaec250fced11a463a94b9..002cf37e6292ce08013c5f75681cccadc5ff48ca 100644 (file)
@@ -432,3 +432,4 @@ drm-ttm-fix-ttm_bo_move_memcpy-for-subclassed-struct-ttm_resource.patch
 drm-panfrost-simplify-lock_region-calculation.patch
 drm-panfrost-use-u64-for-size-in-lock_region.patch
 drm-panfrost-clamp-lock-region-to-bifrost-minimum.patch
+tracing-osnoise-fix-missed-cpus_read_unlock-in-start_per_cpu_kthreads.patch
diff --git a/queue-5.14/tracing-osnoise-fix-missed-cpus_read_unlock-in-start_per_cpu_kthreads.patch b/queue-5.14/tracing-osnoise-fix-missed-cpus_read_unlock-in-start_per_cpu_kthreads.patch
new file mode 100644 (file)
index 0000000..8b4c056
--- /dev/null
@@ -0,0 +1,51 @@
+From 4b6b08f2e45edda4c067ac40833e3c1f84383c0b Mon Sep 17 00:00:00 2001
+From: "Qiang.Zhang" <qiang.zhang@windriver.com>
+Date: Tue, 31 Aug 2021 10:29:19 +0800
+Subject: tracing/osnoise: Fix missed cpus_read_unlock() in start_per_cpu_kthreads()
+
+From: Qiang.Zhang <qiang.zhang@windriver.com>
+
+commit 4b6b08f2e45edda4c067ac40833e3c1f84383c0b upstream.
+
+When start_kthread() return error, the cpus_read_unlock() need
+to be called.
+
+Link: https://lkml.kernel.org/r/20210831022919.27630-1-qiang.zhang@windriver.com
+
+Cc: <stable@vger.kernel.org>
+Fixes: c8895e271f79 ("trace/osnoise: Support hotplug operations")
+Acked-by: Daniel Bristot de Oliveira <bristot@kernel.org>
+Signed-off-by: Qiang.Zhang <qiang.zhang@windriver.com>
+Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ kernel/trace/trace_osnoise.c |    6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+--- a/kernel/trace/trace_osnoise.c
++++ b/kernel/trace/trace_osnoise.c
+@@ -1548,7 +1548,7 @@ static int start_kthread(unsigned int cp
+ static int start_per_cpu_kthreads(struct trace_array *tr)
+ {
+       struct cpumask *current_mask = &save_cpumask;
+-      int retval;
++      int retval = 0;
+       int cpu;
+       get_online_cpus();
+@@ -1568,13 +1568,13 @@ static int start_per_cpu_kthreads(struct
+               retval = start_kthread(cpu);
+               if (retval) {
+                       stop_per_cpu_kthreads();
+-                      return retval;
++                      break;
+               }
+       }
+       put_online_cpus();
+-      return 0;
++      return retval;
+ }
+ #ifdef CONFIG_HOTPLUG_CPU