Skip to content

Commit

Permalink
tracing/osnoise: Fix missed cpus_read_unlock() in start_per_cpu_kthre…
Browse files Browse the repository at this point in the history
…ads()

commit 4b6b08f 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: c8895e2 ("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>
  • Loading branch information
Zqiang1211 authored and gregkh committed Sep 18, 2021
1 parent 39cd7a4 commit 5ecb174
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions kernel/trace/trace_osnoise.c
Expand Up @@ -1548,7 +1548,7 @@ static int start_kthread(unsigned int cpu)
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();
Expand All @@ -1568,13 +1568,13 @@ static int start_per_cpu_kthreads(struct trace_array *tr)
retval = start_kthread(cpu);
if (retval) {
stop_per_cpu_kthreads();
return retval;
break;
}
}

put_online_cpus();

return 0;
return retval;
}

#ifdef CONFIG_HOTPLUG_CPU
Expand Down

0 comments on commit 5ecb174

Please sign in to comment.