From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751329Ab3KFFbe (ORCPT ); Wed, 6 Nov 2013 00:31:34 -0500 Received: from mail-ee0-f54.google.com ([74.125.83.54]:64245 "EHLO mail-ee0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750793Ab3KFFbc (ORCPT ); Wed, 6 Nov 2013 00:31:32 -0500 Date: Wed, 6 Nov 2013 06:31:28 +0100 From: Ingo Molnar To: Arnaldo Carvalho de Melo Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Corey Ashford , David Ahern , Frederic Weisbecker , Jiri Olsa , Mike Galbraith , Namhyung Kim , Paul Mackerras , Peter Zijlstra , Rodrigo Campos , Stephane Eranian Subject: Re: [GIT PULL 00/10] perf/core improvements and fixes Message-ID: <20131106053128.GA19905@gmail.com> References: <1383682201-19399-1-git-send-email-acme@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1383682201-19399-1-git-send-email-acme@infradead.org> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Arnaldo Carvalho de Melo wrote: > From: Arnaldo Carvalho de Melo > > Hi Ingo, > > Please consider pulling, > > - Arnaldo > > The following changes since commit 87968f94fbea47df334502a0db645833ce8a848b: > > Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2013-11-04 21:14:04 +0100) > > are available in the git repository at: > > > git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo > > for you to fetch changes up to 316c7136f8bad924609163b9b115f68d59a68c82: > > perf tools: Finish the removal of 'self' arguments (2013-11-05 15:32:36 -0300) > > ---------------------------------------------------------------- > perf/core improvements and fixes: > > . Check maximum frequency rate for record/top, emitting better error > messages, from Jiri Olsa. > > . Disable live kvm command if timerfd is not supported, from David Ahern. > > . Add usage to 'perf list', from David Ahern. > > . Fix detection of non-core features, from David Ahern. > > . Consolidate __hists__add_*entry(), cleanup from Namhyung Kim. > > Signed-off-by: Arnaldo Carvalho de Melo > > ---------------------------------------------------------------- > Arnaldo Carvalho de Melo (2): > perf fs: Rename NAME_find_mountpoint() to NAME__mountpoint() > perf tools: Finish the removal of 'self' arguments > > David Ahern (4): > perf kvm: Disable live command if timerfd is not supported > tools/perf/build: Fix detection of non-core features > perf list: Remove a level of indentation > perf list: Add usage > > Jiri Olsa (3): > perf tools: Factor sysfs code into generic fs object > perf fs: Add procfs support > perf tools: Check maximum frequency rate for record/top > > Namhyung Kim (1): > perf hists: Consolidate __hists__add_*entry() > > tools/perf/Makefile.perf | 4 +- > tools/perf/builtin-annotate.c | 2 +- > tools/perf/builtin-diff.c | 3 +- > tools/perf/builtin-kvm.c | 12 ++ > tools/perf/builtin-list.c | 84 ++++++++------ > tools/perf/builtin-record.c | 15 +-- > tools/perf/builtin-report.c | 16 ++- > tools/perf/builtin-top.c | 20 +--- > tools/perf/config/Makefile | 17 ++- > tools/perf/config/feature-checks/Makefile | 6 +- > tools/perf/config/feature-checks/test-all.c | 5 + > tools/perf/config/feature-checks/test-timerfd.c | 18 +++ > .../perf/scripts/python/Perf-Trace-Util/Context.c | 6 +- > tools/perf/tests/hists_link.c | 6 +- > tools/perf/tests/parse-events.c | 6 +- > tools/perf/ui/browser.h | 32 +++--- > tools/perf/ui/browsers/hists.c | 2 +- > tools/perf/ui/browsers/map.c | 40 +++---- > tools/perf/ui/browsers/map.h | 2 +- > tools/perf/ui/browsers/scripts.c | 8 +- > tools/perf/ui/stdio/hist.c | 14 +-- > tools/perf/util/build-id.h | 3 +- > tools/perf/util/cpumap.c | 6 +- > tools/perf/util/event.c | 6 +- > tools/perf/util/event.h | 3 +- > tools/perf/util/evlist.h | 3 +- > tools/perf/util/fs.c | 119 ++++++++++++++++++++ > tools/perf/util/fs.h | 7 ++ > tools/perf/util/hist.c | 75 ++----------- > tools/perf/util/hist.h | 51 +++------ > tools/perf/util/include/linux/magic.h | 4 + > tools/perf/util/pmu.c | 17 +-- > tools/perf/util/probe-finder.c | 113 +++++++++---------- > tools/perf/util/probe-finder.h | 10 +- > tools/perf/util/pstack.h | 10 +- > tools/perf/util/python-ext-sources | 2 +- > tools/perf/util/record.c | 71 ++++++++++++ > tools/perf/util/session.c | 121 ++++++++++----------- > tools/perf/util/session.h | 27 ++--- > tools/perf/util/sort.h | 2 +- > tools/perf/util/strfilter.c | 32 +++--- > tools/perf/util/strfilter.h | 12 +- > tools/perf/util/sysfs.c | 60 ---------- > tools/perf/util/sysfs.h | 6 - > tools/perf/util/thread.h | 10 +- > 45 files changed, 591 insertions(+), 497 deletions(-) > create mode 100644 tools/perf/config/feature-checks/test-timerfd.c > create mode 100644 tools/perf/util/fs.c > create mode 100644 tools/perf/util/fs.h > delete mode 100644 tools/perf/util/sysfs.c > delete mode 100644 tools/perf/util/sysfs.h Pulled, thanks Arnaldo! Ingo