Prev: [PATCH 2/9] perf ui: Move ui_helpline routines to separate file in util/ui/
Next: [PATCH 6/9] perf symbols: Ignore mapping symbols on ARM
From: Arnaldo Carvalho de Melo on 10 Aug 2010 16:20 Hi Ingo, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux-2.6 perf/core Regards, - Arnaldo Arnaldo Carvalho de Melo (8): perf ui: Shorten ui_browser member names perf ui: Move ui_helpline routines to separate file in util/ui/ perf ui: Move ui_progress routines to separate file in util/ui/ perf ui: Move annotate browser to util/ui/browsers/ perf ui: Move map browser to util/ui/browsers/ perf ui: Move hists browser to util/ui/browsers/ perf ui: Complete the breakdown of util/newt.c perf annotate: Sort by hottest lines in the TUI Dave Martin (1): perf symbols: Ignore mapping symbols on ARM tools/perf/Makefile | 25 +- tools/perf/builtin-annotate.c | 2 +- tools/perf/util/debug.c | 2 +- tools/perf/util/debug.h | 9 +- tools/perf/util/hist.c | 13 +- tools/perf/util/hist.h | 3 +- tools/perf/util/newt.c | 1487 -------------------------------- tools/perf/util/pstack.h | 2 + tools/perf/util/symbol.c | 10 + tools/perf/util/ui/browser.c | 57 +- tools/perf/util/ui/browser.h | 7 +- tools/perf/util/ui/browsers/annotate.c | 191 ++++ tools/perf/util/ui/browsers/hists.c | 946 ++++++++++++++++++++ tools/perf/util/ui/browsers/map.c | 163 ++++ tools/perf/util/ui/browsers/map.h | 6 + tools/perf/util/ui/helpline.c | 69 ++ tools/perf/util/ui/helpline.h | 10 + tools/perf/util/ui/libslang.h | 27 + tools/perf/util/ui/progress.c | 60 ++ tools/perf/util/ui/progress.h | 11 + tools/perf/util/ui/setup.c | 42 + tools/perf/util/ui/util.c | 114 +++ tools/perf/util/ui/util.h | 10 + 23 files changed, 1729 insertions(+), 1537 deletions(-) delete mode 100644 tools/perf/util/newt.c create mode 100644 tools/perf/util/ui/browsers/annotate.c create mode 100644 tools/perf/util/ui/browsers/hists.c create mode 100644 tools/perf/util/ui/browsers/map.c create mode 100644 tools/perf/util/ui/browsers/map.h create mode 100644 tools/perf/util/ui/helpline.c create mode 100644 tools/perf/util/ui/helpline.h create mode 100644 tools/perf/util/ui/libslang.h create mode 100644 tools/perf/util/ui/progress.c create mode 100644 tools/perf/util/ui/progress.h create mode 100644 tools/perf/util/ui/setup.c create mode 100644 tools/perf/util/ui/util.c create mode 100644 tools/perf/util/ui/util.h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |