Re: [PATCH] trace/ftrace: fix maybe-uninitialized compiler warning

2020-05-28 Thread Steven Rostedt
Hi Kaitao, Sorry for the late response, I've been a bit swamped. On Sat, 23 May 2020 23:53:04 +0800 Kaitao Cheng wrote: > During build compiler reports some 'false positive' warnings about > variables {'seq_ops', 'filtered_pids', 'other_pids'} may be used > uninitialized. This patch silences th

[PATCH] trace/ftrace: fix maybe-uninitialized compiler warning

2020-05-23 Thread Kaitao Cheng
During build compiler reports some 'false positive' warnings about variables {'seq_ops', 'filtered_pids', 'other_pids'} may be used uninitialized. This patch silences these warnings. Also delete some useless spaces Signed-off-by: Kaitao Cheng --- kernel/trace/ftrace.c | 10 -- 1 file cha