mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
perf list: Remove a level of indentation
With a return after the if check an indentation level can be removed. Indentation shift only; no functional changes. Signed-off-by: David Ahern <dsahern@gmail.com> Acked-by: Ingo Molnar <mingo@kernel.org> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/1383149707-1008-1-git-send-email-dsahern@gmail.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
parent
5febff0066
commit
8e00ddc9df
1 changed files with 37 additions and 36 deletions
|
@ -17,48 +17,49 @@
|
||||||
|
|
||||||
int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
|
int cmd_list(int argc, const char **argv, const char *prefix __maybe_unused)
|
||||||
{
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
setup_pager();
|
setup_pager();
|
||||||
|
|
||||||
if (argc == 1)
|
if (argc == 1) {
|
||||||
print_events(NULL, false);
|
print_events(NULL, false);
|
||||||
else {
|
return 0;
|
||||||
int i;
|
}
|
||||||
|
|
||||||
for (i = 1; i < argc; ++i) {
|
for (i = 1; i < argc; ++i) {
|
||||||
if (i > 2)
|
if (i > 2)
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
if (strncmp(argv[i], "tracepoint", 10) == 0)
|
if (strncmp(argv[i], "tracepoint", 10) == 0)
|
||||||
print_tracepoint_events(NULL, NULL, false);
|
print_tracepoint_events(NULL, NULL, false);
|
||||||
else if (strcmp(argv[i], "hw") == 0 ||
|
else if (strcmp(argv[i], "hw") == 0 ||
|
||||||
strcmp(argv[i], "hardware") == 0)
|
strcmp(argv[i], "hardware") == 0)
|
||||||
print_events_type(PERF_TYPE_HARDWARE);
|
print_events_type(PERF_TYPE_HARDWARE);
|
||||||
else if (strcmp(argv[i], "sw") == 0 ||
|
else if (strcmp(argv[i], "sw") == 0 ||
|
||||||
strcmp(argv[i], "software") == 0)
|
strcmp(argv[i], "software") == 0)
|
||||||
print_events_type(PERF_TYPE_SOFTWARE);
|
print_events_type(PERF_TYPE_SOFTWARE);
|
||||||
else if (strcmp(argv[i], "cache") == 0 ||
|
else if (strcmp(argv[i], "cache") == 0 ||
|
||||||
strcmp(argv[i], "hwcache") == 0)
|
strcmp(argv[i], "hwcache") == 0)
|
||||||
print_hwcache_events(NULL, false);
|
print_hwcache_events(NULL, false);
|
||||||
else if (strcmp(argv[i], "pmu") == 0)
|
else if (strcmp(argv[i], "pmu") == 0)
|
||||||
print_pmu_events(NULL, false);
|
print_pmu_events(NULL, false);
|
||||||
else if (strcmp(argv[i], "--raw-dump") == 0)
|
else if (strcmp(argv[i], "--raw-dump") == 0)
|
||||||
print_events(NULL, true);
|
print_events(NULL, true);
|
||||||
else {
|
else {
|
||||||
char *sep = strchr(argv[i], ':'), *s;
|
char *sep = strchr(argv[i], ':'), *s;
|
||||||
int sep_idx;
|
int sep_idx;
|
||||||
|
|
||||||
if (sep == NULL) {
|
if (sep == NULL) {
|
||||||
print_events(argv[i], false);
|
print_events(argv[i], false);
|
||||||
continue;
|
continue;
|
||||||
}
|
|
||||||
sep_idx = sep - argv[i];
|
|
||||||
s = strdup(argv[i]);
|
|
||||||
if (s == NULL)
|
|
||||||
return -1;
|
|
||||||
|
|
||||||
s[sep_idx] = '\0';
|
|
||||||
print_tracepoint_events(s, s + sep_idx + 1, false);
|
|
||||||
free(s);
|
|
||||||
}
|
}
|
||||||
|
sep_idx = sep - argv[i];
|
||||||
|
s = strdup(argv[i]);
|
||||||
|
if (s == NULL)
|
||||||
|
return -1;
|
||||||
|
|
||||||
|
s[sep_idx] = '\0';
|
||||||
|
print_tracepoint_events(s, s + sep_idx + 1, false);
|
||||||
|
free(s);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue