Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753150AbbG1SpJ (ORCPT ); Tue, 28 Jul 2015 14:45:09 -0400 Received: from mga11.intel.com ([192.55.52.93]:3263 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752407AbbG1Sog (ORCPT ); Tue, 28 Jul 2015 14:44:36 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,564,1432623600"; d="scan'208";a="531811765" From: kan.liang@intel.com To: a.p.zijlstra@chello.nl, acme@kernel.org Cc: luto@kernel.org, mingo@redhat.com, eranian@google.com, ak@linux.intel.com, mark.rutland@arm.com, adrian.hunter@intel.com, jolsa@kernel.org, namhyung@kernel.org, linux-kernel@vger.kernel.org, Kan Liang Subject: [PATCH V3 2/5] perf,tools: read msr pmu type from header. Date: Tue, 28 Jul 2015 07:29:32 -0400 Message-Id: <1438082975-47730-3-git-send-email-kan.liang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1438082975-47730-1-git-send-email-kan.liang@intel.com> References: <1438082975-47730-1-git-send-email-kan.liang@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1259 Lines: 44 From: Kan Liang Get msr pmu type when processing pmu_mappings Signed-off-by: Kan Liang --- tools/perf/util/header.c | 3 +++ tools/perf/util/header.h | 1 + 2 files changed, 4 insertions(+) diff --git a/tools/perf/util/header.c b/tools/perf/util/header.c index 31be7bc..3fa8503 100644 --- a/tools/perf/util/header.c +++ b/tools/perf/util/header.c @@ -1766,6 +1766,9 @@ static int process_pmu_mappings(struct perf_file_section *section __maybe_unused /* include a NULL character at the end */ strbuf_add(&sb, "", 1); + if (!strcmp(name, "msr")) + ph->env.msr_pmu_type = type; + free(name); pmu_num--; } diff --git a/tools/perf/util/header.h b/tools/perf/util/header.h index fe1654c..1863f6b 100644 --- a/tools/perf/util/header.h +++ b/tools/perf/util/header.h @@ -95,6 +95,7 @@ struct perf_session_env { char *sibling_threads; char *numa_nodes; char *pmu_mappings; + unsigned int msr_pmu_type; }; struct perf_header { -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/