From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755373AbbLJIML (ORCPT ); Thu, 10 Dec 2015 03:12:11 -0500 Received: from mail-wm0-f48.google.com ([74.125.82.48]:37571 "EHLO mail-wm0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753046AbbLJIMJ (ORCPT ); Thu, 10 Dec 2015 03:12:09 -0500 Date: Thu, 10 Dec 2015 09:12:05 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Adrian Hunter , David Binderman , Jiri Olsa , Josh Poimboeuf , Masami Hiramatsu , Namhyung Kim , Peter Zijlstra , Arnaldo Carvalho de Melo Subject: Re: [GIT PULL 00/11] perf/core improvements and fixes Message-ID: <20151210081205.GA11458@gmail.com> References: <1449679916-25311-1-git-send-email-acme@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1449679916-25311-1-git-send-email-acme@kernel.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Arnaldo Carvalho de Melo wrote: > 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 Pulled, thanks a lot Arnaldo! Ingo