Skip to content

Commit

Permalink
tracing/hwlat: Drop the duplicate assignment in start_kthread()
Browse files Browse the repository at this point in the history
We have set 'current_mask' to '&save_cpumask' in its declaration,
so there is no need to assign again.

Link: https://lkml.kernel.org/r/20200730082318.42584-1-haokexin@gmail.com

Signed-off-by: Kevin Hao <haokexin@gmail.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
  • Loading branch information
Kevin Hao authored and Steven Rostedt (VMware) committed Jul 30, 2020
1 parent 36b8aac commit a9d0ba6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion kernel/trace/trace_hwlat.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,6 @@ static int start_kthread(struct trace_array *tr)
return 0;

/* Just pick the first CPU on first iteration */
current_mask = &save_cpumask;
get_online_cpus();
cpumask_and(current_mask, cpu_online_mask, tracing_buffer_mask);
put_online_cpus();
Expand Down

0 comments on commit a9d0ba6

Please sign in to comment.