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

perf trace: Fix exit_group() formatting

This doesn't return, so there is no raw_syscalls:sys_exit for it, add
the ending ')', without any return value, since it is void.

Reported-by: Ingo Molnar <mingo@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Milian Wolff <milian.wolff@kdab.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: http://lkml.kernel.org/n/tip-vh2mii0g4qlveuc4joufbipu@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

+1 -1
+1 -1
tools/perf/builtin-trace.c
··· 1552 1552 if (sc->is_exit) { 1553 1553 if (!(trace->duration_filter || trace->summary_only || trace->min_stack)) { 1554 1554 trace__fprintf_entry_head(trace, thread, 1, sample->time, trace->output); 1555 - fprintf(trace->output, "%-70s\n", ttrace->entry_str); 1555 + fprintf(trace->output, "%-70s)\n", ttrace->entry_str); 1556 1556 } 1557 1557 } else { 1558 1558 ttrace->entry_pending = true;