From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755222AbcDAV5Z (ORCPT ); Fri, 1 Apr 2016 17:57:25 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:49076 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754485AbcDAV5W (ORCPT ); Fri, 1 Apr 2016 17:57:22 -0400 From: Arnaldo Carvalho de Melo To: Ingo Molnar Cc: linux-kernel@vger.kernel.org, Arnaldo Carvalho de Melo , Adrian Hunter , Alexander Shishkin , Andi Kleen , David Ahern , He Kuang , Jiri Olsa , Josh Poimboeuf , Kan Liang , Milian Wolff , Namhyung Kim , Peter Zijlstra , pi3orama@163.com, Stephane Eranian , Sukadev Bhattiprolu , Wang Nan , Arnaldo Carvalho de Melo Subject: [GIT PULL 00/10] perf/core improvements and fixes Date: Fri, 1 Apr 2016 18:56:56 -0300 Message-Id: <1459547826-20100-1-git-send-email-acme@kernel.org> X-Mailer: git-send-email 2.5.5 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 d1b26c70246bc72922ae61d9f972d5c2588409e7: perf/ring_buffer: Prepare writing into the ring-buffer from the end (2016-03-31 10:30:49 +0200) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo-20160401 for you to fetch changes up to d37ba880598654fda10b312331377cdca3edd574: perf bpf: Add sample types for 'bpf-output' event (2016-04-01 18:46:25 -0300) ---------------------------------------------------------------- perf/core improvements and fixes: User visible: - Do not use events that don't have timestamps when setting 'perf trace's base timestamp, fixing up the timestamp column for syscalls (Arnaldo Carvalho de Melo) - Make the 'bpf-output' sample_type be the same as tracepoint's, fixing up 'perf trace's timestamp column for bpf events (Wang Nan) - Fix PMU term format max value calculation (Kan Liang) - Pretty print 'seccomp', 'getrandom' syscalls in 'perf trace' (Arnaldo Carvalho de Melo) Infrastructure: - Add support for using TSC as an ARCH timestamp when synthesizing JIT records (Adrian Hunter) Signed-off-by: Arnaldo Carvalho de Melo ---------------------------------------------------------------- Adrian Hunter (3): perf tools: Add time conversion event perf jit: Add support for using TSC as a timestamp perf intel-pt/bts: Define JITDUMP_USE_ARCH_TIMESTAMP Arnaldo Carvalho de Melo (5): perf trace: Do not process PERF_RECORD_LOST twice perf trace: Pretty print seccomp() args perf trace: Pretty print getrandom() args perf trace: Introduce function to set the base timestamp perf trace: Don't set the base timestamp using events without PERF_SAMPLE_TIME Kan Liang (1): perf tools: Fix PMU term format max value calculation Wang Nan (1): perf bpf: Add sample types for 'bpf-output' event tools/perf/arch/x86/util/intel-bts.c | 5 ++ tools/perf/arch/x86/util/intel-pt.c | 5 ++ tools/perf/arch/x86/util/tsc.c | 32 +++++++++++- tools/perf/arch/x86/util/tsc.h | 17 ------- tools/perf/builtin-inject.c | 1 + tools/perf/builtin-record.c | 15 ++++++ tools/perf/builtin-trace.c | 99 ++++++++++++++++++++++++++++++++++-- tools/perf/jvmti/jvmti_agent.c | 43 +++++++++++++++- tools/perf/util/Build | 3 +- tools/perf/util/event.c | 1 + tools/perf/util/event.h | 9 ++++ tools/perf/util/evsel.c | 3 +- tools/perf/util/jitdump.c | 37 ++++++++++++-- tools/perf/util/jitdump.h | 3 ++ tools/perf/util/pmu.c | 13 +++-- tools/perf/util/session.c | 6 +++ tools/perf/util/session.h | 1 + tools/perf/util/tool.h | 1 + tools/perf/util/tsc.h | 21 +++++++- 19 files changed, 274 insertions(+), 41 deletions(-) delete mode 100644 tools/perf/arch/x86/util/tsc.h