Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

perf daemon: Convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Reviewed-by: Ian Rogers <irogers@google.com>
Signed-off-by: Chen Ni <nichen@iscas.ac.cn>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: https://lore.kernel.org/r/20240716074340.968909-1-nichen@iscas.ac.cn
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by

Chen Ni and committed by
Arnaldo Carvalho de Melo
e60fc19e 050f2a03

+1 -1
+1 -1
tools/perf/builtin-daemon.c
··· 1433 1433 } 1434 1434 1435 1435 memset(&cmd, 0, sizeof(cmd)); 1436 - cmd.signal.cmd = CMD_SIGNAL, 1436 + cmd.signal.cmd = CMD_SIGNAL; 1437 1437 cmd.signal.sig = SIGUSR2; 1438 1438 strncpy(cmd.signal.name, name, sizeof(cmd.signal.name) - 1); 1439 1439