perf stat: better error message for unsupported events

For unsupported events (e.g., H/W events when running in a VM)
perf stat currently fails with the error message:

Error: open_counter returned with 2 (No such file or directory).
/bin/dmesg may provide additional information.

Fatal: Not all events could be opened.

dmesg is of no help and it is not clear as to why it fails to
open the counter. This patch changes the error message to

Error: cache-misses event is not supported.
Fatal: Not all events could be opened.

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: a.p.zijlstra@chello.nl
LPU-Reference: <1294597272-17335-1-git-send-email-daahern@cisco.com>
Signed-off-by: David Ahern <daahern@cisco.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>

authored by David Ahern and committed by Arnaldo Carvalho de Melo 5a3446bc e462dc55

+2
+2
tools/perf/builtin-stat.c
··· 316 316 "\t Consider tweaking" 317 317 " /proc/sys/kernel/perf_event_paranoid or running as root.", 318 318 system_wide ? "system-wide " : ""); 319 + } else if (errno == ENOENT) { 320 + error("%s event is not supported. ", event_name(counter)); 319 321 } else { 320 322 error("open_counter returned with %d (%s). " 321 323 "/bin/dmesg may provide additional information.\n",