From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751493AbdILPcM (ORCPT ); Tue, 12 Sep 2017 11:32:12 -0400 Received: from mail-wm0-f54.google.com ([74.125.82.54]:46093 "EHLO mail-wm0-f54.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751404AbdILPcK (ORCPT ); Tue, 12 Sep 2017 11:32:10 -0400 X-Google-Smtp-Source: AOwi7QDpopXFOg/E5SVeiBcJQTk09Y6U2aOl6yEj0wVyoEMvnybat6KNFRBAm/ZgouNZKvoHviiAFg== Date: Tue, 12 Sep 2017 17:32:06 +0200 From: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Peter Zijlstra , Thomas Gleixner , Andrew Morton Subject: [GIT PULL] perf fixes Message-ID: <20170912153206.64c5v2ibrp7hjx7g@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Linus, Please pull the latest perf-urgent-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-urgent-for-linus # HEAD: 770e96125515daf1c7bc179323f2e0d488dfe6ac Merge tag 'perf-core-for-mingo-4.14-20170901' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent Perf tooling updates and fixes. Thanks, Ingo ------------------> Arnaldo Carvalho de Melo (4): perf syscalltbl: Support glob matching on syscall names perf trace: Support syscall name globbing perf stat: Only auto-merge events that are PMU aliases perf annotate browser: Help for cycling thru hottest instructions with TAB/shift+TAB Jack Henschel (1): perf intel-pt: Fix syntax in documentation of config option Jin Yao (1): perf report: Calculate the average cycles of iterations Kan Liang (5): perf tools: Support new sample type for physical address perf sort: Add sort option for physical address perf mem: Support physical address perf script: Support physical address perf test: Add test case for PERF_SAMPLE_PHYS_ADDR Ravi Bangoria (1): perf test powerpc: Fix 'Object code reading' test Sukadev Bhattiprolu (1): perf vendor events powerpc: Remove duplicate events tools/include/uapi/linux/perf_event.h | 4 +- tools/perf/Documentation/intel-pt.txt | 2 +- tools/perf/Documentation/perf-mem.txt | 4 + tools/perf/Documentation/perf-record.txt | 5 +- tools/perf/Documentation/perf-report.txt | 1 + tools/perf/Documentation/perf-script.txt | 2 +- tools/perf/Documentation/perf-trace.txt | 2 +- tools/perf/builtin-mem.c | 97 ++++++++++++----- tools/perf/builtin-record.c | 2 + tools/perf/builtin-script.c | 15 ++- tools/perf/builtin-stat.c | 2 +- tools/perf/builtin-trace.c | 39 ++++++- tools/perf/perf.h | 1 + .../pmu-events/arch/powerpc/power9/frontend.json | 7 +- .../perf/pmu-events/arch/powerpc/power9/other.json | 120 --------------------- .../pmu-events/arch/powerpc/power9/pipeline.json | 7 +- tools/perf/pmu-events/arch/powerpc/power9/pmc.json | 7 +- tools/perf/tests/code-reading.c | 5 + tools/perf/tests/sample-parsing.c | 6 +- tools/perf/ui/browsers/annotate.c | 3 +- tools/perf/ui/browsers/hists.c | 8 +- tools/perf/ui/stdio/hist.c | 10 +- tools/perf/util/callchain.c | 49 ++++----- tools/perf/util/callchain.h | 9 +- tools/perf/util/event.h | 1 + tools/perf/util/evsel.c | 19 +++- tools/perf/util/evsel.h | 1 + tools/perf/util/hist.c | 4 + tools/perf/util/hist.h | 1 + tools/perf/util/machine.c | 96 ++++++++++------- tools/perf/util/parse-events.c | 24 +++-- tools/perf/util/session.c | 3 + tools/perf/util/sort.c | 42 ++++++++ tools/perf/util/sort.h | 1 + tools/perf/util/symbol.h | 1 + tools/perf/util/syscalltbl.c | 33 ++++++ tools/perf/util/syscalltbl.h | 3 + 37 files changed, 368 insertions(+), 268 deletions(-)