]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
perf top: Add error message for EMFILE
authorNamhyung Kim <namhyung@gmail.com>
Sat, 7 Jan 2012 17:25:27 +0000 (02:25 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Sun, 8 Jan 2012 15:26:11 +0000 (13:26 -0200)
When a user tries to open so many events, perf_event_open syscall may
fail with EMFILE. Provide advise for that case.

Cc: Ingo Molnar <mingo@elte.hu>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1325957132-10600-3-git-send-email-namhyung@gmail.com
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-top.c

index d89dec90103ef3e5a6280fb40426f573f4e99a49..8f80df89603822e5431f45f1374cf926208f23ed 100644 (file)
@@ -888,6 +888,10 @@ try_again:
                                ui__warning("The %s event is not supported.\n",
                                            event_name(counter));
                                goto out_err;
+                       } else if (err == EMFILE) {
+                               ui__warning("Too many events are opened.\n"
+                                           "Try again after reducing the number of events\n");
+                               goto out_err;
                        }
 
                        ui__warning("The sys_perf_event_open() syscall "