perf stat: Print out all arguments
Before: Performance counter stats for '/home/mingo/hackbench': After: Performance counter stats for '/home/mingo/hackbench 10': Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: Mike Galbraith <efault@gmx.de> Cc: Paul Mackerras <paulus@samba.org> Cc: Corey Ashford <cjashfor@linux.vnet.ibm.com> Cc: Marcelo Tosatti <mtosatti@redhat.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Родитель
e98e96fe43
Коммит
44db76c855
|
@ -228,6 +228,7 @@ static int do_perfstat(int argc, const char **argv)
|
||||||
int counter;
|
int counter;
|
||||||
int status;
|
int status;
|
||||||
int pid;
|
int pid;
|
||||||
|
int i;
|
||||||
|
|
||||||
if (!system_wide)
|
if (!system_wide)
|
||||||
nr_cpus = 1;
|
nr_cpus = 1;
|
||||||
|
@ -243,14 +244,17 @@ static int do_perfstat(int argc, const char **argv)
|
||||||
|
|
||||||
if ((pid = fork()) < 0)
|
if ((pid = fork()) < 0)
|
||||||
perror("failed to fork");
|
perror("failed to fork");
|
||||||
|
|
||||||
if (!pid) {
|
if (!pid) {
|
||||||
if (execvp(argv[0], (char **)argv)) {
|
if (execvp(argv[0], (char **)argv)) {
|
||||||
perror(argv[0]);
|
perror(argv[0]);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
while (wait(&status) >= 0)
|
while (wait(&status) >= 0)
|
||||||
;
|
;
|
||||||
|
|
||||||
prctl(PR_TASK_PERF_COUNTERS_DISABLE);
|
prctl(PR_TASK_PERF_COUNTERS_DISABLE);
|
||||||
t1 = rdclock();
|
t1 = rdclock();
|
||||||
|
|
||||||
|
@ -259,8 +263,12 @@ static int do_perfstat(int argc, const char **argv)
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
fprintf(stderr, " Performance counter stats for \'%s\':\n",
|
fprintf(stderr, " Performance counter stats for \'%s", argv[0]);
|
||||||
argv[0]);
|
|
||||||
|
for (i = 1; i < argc; i++)
|
||||||
|
fprintf(stderr, " %s", argv[i]);
|
||||||
|
|
||||||
|
fprintf(stderr, "\':\n");
|
||||||
fprintf(stderr, "\n");
|
fprintf(stderr, "\n");
|
||||||
|
|
||||||
for (counter = 0; counter < nr_counters; counter++)
|
for (counter = 0; counter < nr_counters; counter++)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче