From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752720AbbLIQwG (ORCPT ); Wed, 9 Dec 2015 11:52:06 -0500 Received: from bombadil.infradead.org ([198.137.202.9]:50463 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751706AbbLIQwC (ORCPT ); Wed, 9 Dec 2015 11:52:02 -0500 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , David Binderman , Jiri Olsa , Josh Poimboeuf , Masami Hiramatsu , Namhyung Kim , Peter Zijlstra , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/11] perf/core improvements and fixes Date: Wed, 9 Dec 2015 13:51:45 -0300 Message-Id: <1449679916-25311-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.1.0 X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Ingo, Please consider pulling, - Arnaldo The following changes since commit a30c99a0beb3030ba42dab38cad6273cd090805d: Merge branch 'perf/urgent' into perf/core, to pick up fixes (2015-12-08 06:06:20 +0100) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo for you to fetch changes up to 0a4bb5da957b83ece8b4723c5bac7a5d29fbfb33: perf tools: Move cmd_version() to builtin-version.c (2015-12-09 13:42:03 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - Change default selection TUI background color to yellow (Ingo Molnar) Infrastructure: - Start paving the way to reuse some cmdline functions with other tools/ living utilities (Josh Poimboeuf) - Reference count fixes using the refcount debugger, unleaking some objects (Masami Hiramatsu) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Ingo Molnar (1): perf tui: Change default selection background color to yellow Josh Poimboeuf (4): perf tools: Remove unused pager_use_color variable perf tools: Move term functions out of util.c perf tools: Save cmdline arguments earlier perf tools: Move cmd_version() to builtin-version.c Masami Hiramatsu (6): perf tools: Fix map_groups__clone to put cloned map perf stat: Fix cmd_stat to release cpu_map perf hists: Fix hists_evsel to release hists perf tools: Fix maps__fixup_overlappings to put used maps perf machine: Fix machine.vmlinux_maps to make sure to clear the old one perf tools: Fix write_numa_topology to put cpu_map instead of free tools/perf/Build | 1 + tools/perf/builtin-stat.c | 9 +++++++++ tools/perf/builtin-version.c | 10 ++++++++++ tools/perf/perf.c | 1 + tools/perf/ui/browser.c | 2 +- tools/perf/util/Build | 2 +- tools/perf/util/cache.h | 1 - tools/perf/util/color.c | 2 +- tools/perf/util/env.c | 9 --------- tools/perf/util/environment.c | 8 -------- tools/perf/util/header.c | 2 +- tools/perf/util/help.c | 7 ------- tools/perf/util/hist.c | 10 +++++++++- tools/perf/util/machine.c | 5 +++++ tools/perf/util/map.c | 3 +++ tools/perf/util/parse-options.c | 2 -- tools/perf/util/term.c | 35 +++++++++++++++++++++++++++++++++++ tools/perf/util/term.h | 10 ++++++++++ tools/perf/util/util.c | 34 ---------------------------------- tools/perf/util/util.h | 4 +--- 20 files changed, 88 insertions(+), 69 deletions(-) create mode 100644 tools/perf/builtin-version.c delete mode 100644 tools/perf/util/environment.c create mode 100644 tools/perf/util/term.c create mode 100644 tools/perf/util/term.h