From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751599Ab3LSHAR (ORCPT ); Thu, 19 Dec 2013 02:00:17 -0500 Received: from LGEMRELSE6Q.lge.com ([156.147.1.121]:47860 "EHLO LGEMRELSE6Q.lge.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750872Ab3LSHAP (ORCPT ); Thu, 19 Dec 2013 02:00:15 -0500 X-AuditID: 9c930179-b7bedae000000f15-54-52b2997c2454 From: Namhyung Kim To: Arnaldo Carvalho de Melo Cc: Peter Zijlstra , Paul Mackerras , Ingo Molnar , Namhyung Kim , LKML , Jiri Olsa , David Ahern Subject: [PATCHSET 0/6] perf tools: A couple of TUI improvements Date: Thu, 19 Dec 2013 16:00:05 +0900 Message-Id: <1387436411-20160-1-git-send-email-namhyung@kernel.org> X-Mailer: git-send-email 1.7.11.7 X-Brightmail-Tracker: AAAAAA== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, I was playing with TUI code and added two new windows. One for showing log messages and another for showing header information. (Maybe they can be implemented on the GTK code too someday.) Please try to use it! :) I put the patches on 'perf/tui-v1' branch in my tree: git://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git Any feedbacks are more than welcome, thanks Namhyung Namhyung Kim (6): perf report: Use pr_*() functions if possible perf tools: Introduce struct perf_log perf tools: Get rid of a duplicate va_end() perf tools: Save message when pr_*() was called perf ui/tui: Implement log window perf ui/tui: Implement header window tools/perf/Makefile.perf | 3 ++ tools/perf/builtin-report.c | 24 +++++---- tools/perf/perf.c | 3 ++ tools/perf/ui/browser.h | 3 ++ tools/perf/ui/browsers/header.c | 116 ++++++++++++++++++++++++++++++++++++++++ tools/perf/ui/browsers/hists.c | 8 +++ tools/perf/ui/browsers/log.c | 92 +++++++++++++++++++++++++++++++ tools/perf/util/debug.c | 7 ++- tools/perf/util/debug.h | 15 ++++++ tools/perf/util/log.c | 105 ++++++++++++++++++++++++++++++++++++ 10 files changed, 364 insertions(+), 12 deletions(-) create mode 100644 tools/perf/ui/browsers/header.c create mode 100644 tools/perf/ui/browsers/log.c create mode 100644 tools/perf/util/log.c -- 1.7.11.7