]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
perf ui: Change fallback policy of setup_browser()
authorNamhyung Kim <namhyung.kim@lge.com>
Mon, 30 Apr 2012 04:55:09 +0000 (13:55 +0900)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 2 May 2012 19:17:37 +0000 (16:17 -0300)
If gtk2 support is not enabled (or failed for some reason) try TUI again
instead of falling directly back to the stdio interface.

Signed-off-by: Namhyung Kim <namhyung.kim@lge.com>
Acked-by: Pekka Enberg <penberg@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Namhyung Kim <namhyung@gmail.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Pekka Enberg <penberg@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1335761711-31403-6-git-send-email-namhyung.kim@lge.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/ui/gtk/setup.c
tools/perf/ui/setup.c
tools/perf/ui/tui/setup.c
tools/perf/util/cache.h

index 8c3b573e863d9a88f9147b557c3bad10fd71b6bb..8295299577660b24b99405a22965316f04f96e98 100644 (file)
@@ -1,9 +1,9 @@
 #include "gtk.h"
 #include "../../util/cache.h"
 
-void perf_gtk__init(bool fallback_to_pager __used)
+int perf_gtk__init(void)
 {
-       gtk_init(NULL, NULL);
+       return gtk_init_check(NULL, NULL) ? 0 : -1;
 }
 
 void perf_gtk__exit(bool wait_for_ok __used)
index 98130e099a0dcc1235ee63c9f7824eddaeadf829..9f5f888f73e30723d5f9c0fd8281345f38e0635e 100644 (file)
@@ -13,13 +13,14 @@ void setup_browser(bool fallback_to_pager)
 
        switch (use_browser) {
        case 2:
-               perf_gtk__init(fallback_to_pager);
-               break;
-
+               if (perf_gtk__init() == 0)
+                       break;
+               /* fall through */
        case 1:
-               ui__init(fallback_to_pager);
-               break;
-
+               use_browser = 1;
+               if (ui__init() == 0)
+                       break;
+               /* fall through */
        default:
                if (fallback_to_pager)
                        setup_pager();
index 0194cea2ea0e1c835782cdf76a318fed6fb6fbd4..d33e943ac434608067fe54fb734cda5a02d1d991 100644 (file)
@@ -100,7 +100,7 @@ static void ui__signal(int sig)
        exit(0);
 }
 
-int ui__init(bool fallback_to_pager __used)
+int ui__init(void)
 {
        int err;
 
index 761d4e998101963ed7d56981b2b21709ae33ca68..cff18c617d137f26020018afc08598788cc3aebf 100644 (file)
@@ -45,27 +45,24 @@ void setup_browser(bool fallback_to_pager);
 void exit_browser(bool wait_for_ok);
 
 #ifdef NO_NEWT_SUPPORT
-static inline int ui__init(bool fallback_to_pager)
+static inline int ui__init(void)
 {
-       if (fallback_to_pager)
-               setup_pager();
-       return 0;
+       return -1;
 }
 static inline void ui__exit(bool wait_for_ok __used) {}
 #else
-int ui__init(bool fallback_to_pager);
+int ui__init(void);
 void ui__exit(bool wait_for_ok);
 #endif
 
 #ifdef NO_GTK2_SUPPORT
-static inline void perf_gtk__init(bool fallback_to_pager)
+static inline int perf_gtk__init(void)
 {
-       if (fallback_to_pager)
-               setup_pager();
+       return -1;
 }
 static inline void perf_gtk__exit(bool wait_for_ok __used) {}
 #else
-void perf_gtk__init(bool fallback_to_pager);
+int perf_gtk__init(void);
 void perf_gtk__exit(bool wait_for_ok);
 #endif
 #endif /* NO_NEWT_SUPPORT && NO_GTK2_SUPPORT */