From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754363AbbBTMqI (ORCPT ); Fri, 20 Feb 2015 07:46:08 -0500 Received: from mga09.intel.com ([134.134.136.24]:33807 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754005AbbBTMqG (ORCPT ); Fri, 20 Feb 2015 07:46:06 -0500 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,614,1418112000"; d="scan'208";a="688357970" From: Adrian Hunter To: Peter Zijlstra , Ingo Molnar Cc: Arnaldo Carvalho de Melo , linux-kernel@vger.kernel.org, David Ahern , Frederic Weisbecker , Jiri Olsa , Namhyung Kim , Paul Mackerras , Stephane Eranian , John Stultz , Thomas Gleixner , Pawel Moll , Steven Rostedt , Andi Kleen , Mathieu Poirier Subject: [PATCH V2 0/2] perf/x86: Add ability to sample TSC Date: Fri, 20 Feb 2015 14:44:07 +0200 Message-Id: <1424436249-3572-1-git-send-email-adrian.hunter@intel.com> X-Mailer: git-send-email 1.9.1 Organization: Intel Finland Oy, Registered Address: PL 281, 00181 Helsinki, Business Identity Code: 0357606 - 4, Domiciled in Helsinki Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi TSC is needed to synchronize Intel Processor Trace (Intel PT) with perf event samples. Refer to patch 1 for more details. There is a description of Intel PT in the Intel Architecture manuals: http://www.intel.com/content/www/us/en/processors/architectures-software-developer-manuals.html With the advent of switching perf_clock to CLOCK_MONOTONIC, it will not be possible to convert perf_clock directly to/from TSC. So add the ability to sample TSC instead. Changes in V2: perf: Sample additional clock value Rename "Architecture specific clock" to "Processor trace clock" Rename PERF_SAMPLE_CLOCK_ARCH -> PERF_SAMPLE_CLOCK_PT etc Expand commit message perf/x86: Provide TSC for PERF_SAMPLE_CLOCK_PT Rename PERF_SAMPLE_CLOCK_ARCH -> PERF_SAMPLE_CLOCK_PT etc Expand commit message Adrian Hunter (2): perf: Sample additional clock value perf/x86: Provide TSC for PERF_SAMPLE_CLOCK_PT arch/x86/include/asm/perf_event.h | 6 ++++++ arch/x86/kernel/cpu/perf_event.c | 10 ++++++++++ include/linux/perf_event.h | 3 ++- include/uapi/linux/perf_event.h | 19 +++++++++++++++++-- kernel/events/core.c | 30 ++++++++++++++++++++++++++++++ kernel/events/internal.h | 4 ++++ 6 files changed, 69 insertions(+), 3 deletions(-) Regards Adrian