• Arnaldo Carvalho de Melo's avatar
    perf stat: Don't show counter information when workload fails · 6af206fd
    Arnaldo Carvalho de Melo authored
    When starting a workload 'stat' wasn't using prepare_workload evlist
    method's signal based exec() error reporting mechanism.
    
    Use it so that the we don't report 'not counted' counters.
    
    Before:
    
      [acme@zoo linux]$ perf stat dfadsfa
      dfadsfa: No such file or directory
    
       Performance counter stats for 'dfadsfa':
    
           <not counted>      task-clock
           <not counted>      context-switches
           <not counted>      cpu-migrations
           <not counted>      page-faults
           <not counted>      cycles
           <not counted>      stalled-cycles-frontend
         <not supported>      stalled-cycles-backend
           <not counted>      instructions
           <not counted>      branches
           <not counted>      branch-misses
    
             0.001831462 seconds time elapsed
    
      [acme@zoo linux]$
    
    After:
    
      [acme@zoo linux]$ perf stat dfadsfa
      dfadsfa: No such file or directory
      [acme@zoo linux]$
    Reported-by: default avatarDavid Ahern <dsahern@gmail.com>
    Cc: Adrian Hunter <adrian.hunter@intel.com>
    Cc: David Ahern <dsahern@gmail.com>
    Cc: Frederic Weisbecker <fweisbec@gmail.com>
    Cc: Jiri Olsa <jolsa@redhat.com>
    Cc: Mike Galbraith <efault@gmx.de>
    Cc: Namhyung Kim <namhyung@kernel.org>
    Cc: Paul Mackerras <paulus@samba.org>
    Cc: Peter Zijlstra <peterz@infradead.org>
    Cc: Stephane Eranian <eranian@google.com>
    Link: http://lkml.kernel.org/n/tip-5yui3bv7e3hitxucnjsn6z8q@git.kernel.orgSigned-off-by: default avatarArnaldo Carvalho de Melo <acme@redhat.com>
    6af206fd
builtin-stat.c 47.7 KB