From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753067AbbIOHFj (ORCPT ); Tue, 15 Sep 2015 03:05:39 -0400 Received: from terminus.zytor.com ([198.137.202.10]:50252 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751953AbbIOHFg (ORCPT ); Tue, 15 Sep 2015 03:05:36 -0400 Date: Tue, 15 Sep 2015 00:05:12 -0700 From: tip-bot for Kan Liang Message-ID: Cc: ak@linux.intel.com, mingo@kernel.org, wangnan0@huawei.com, acme@redhat.com, jolsa@kernel.org, eranian@google.com, tglx@linutronix.de, adrian.hunter@intel.com, kan.liang@intel.com, namhyung@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org Reply-To: linux-kernel@vger.kernel.org, hpa@zytor.com, namhyung@kernel.org, eranian@google.com, adrian.hunter@intel.com, tglx@linutronix.de, kan.liang@intel.com, jolsa@kernel.org, acme@redhat.com, ak@linux.intel.com, mingo@kernel.org, wangnan0@huawei.com In-Reply-To: <1441377946-44429-1-git-send-email-kan.liang@intel.com> References: <1441377946-44429-1-git-send-email-kan.liang@intel.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf tools: Add processor socket info to hist_entry and addr_location Git-Commit-ID: 0c4c4debb0adda4c18c158d95031dc2b9f637869 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 0c4c4debb0adda4c18c158d95031dc2b9f637869 Gitweb: http://git.kernel.org/tip/0c4c4debb0adda4c18c158d95031dc2b9f637869 Author: Kan Liang AuthorDate: Fri, 4 Sep 2015 10:45:42 -0400 Committer: Arnaldo Carvalho de Melo CommitDate: Mon, 14 Sep 2015 12:50:29 -0300 perf tools: Add processor socket info to hist_entry and addr_location This information will come from perf.data files of from the current system, cached when needed, such as when the 'socket' sort order gets introduced. Signed-off-by: Kan Liang Cc: Adrian Hunter Cc: Andi Kleen Cc: Jiri Olsa Cc: Namhyung Kim Cc: Stephane Eranian Cc: Wang Nan Link: http://lkml.kernel.org/r/1441377946-44429-1-git-send-email-kan.liang@intel.com [ Don't blindly use env->cpu[al.cpu].socket_id & use machine->env, fixes by Jiri & Arnaldo ] Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/util/event.c | 8 ++++++++ tools/perf/util/hist.c | 1 + tools/perf/util/sort.h | 1 + tools/perf/util/symbol.h | 1 + 4 files changed, 11 insertions(+) diff --git a/tools/perf/util/event.c b/tools/perf/util/event.c index 7ff6127..497157a 100644 --- a/tools/perf/util/event.c +++ b/tools/perf/util/event.c @@ -1021,6 +1021,14 @@ int perf_event__preprocess_sample(const union perf_event *event, al->sym = NULL; al->cpu = sample->cpu; + al->socket = -1; + + if (al->cpu >= 0) { + struct perf_env *env = machine->env; + + if (env && env->cpu) + al->socket = env->cpu[al->cpu].socket_id; + } if (al->map) { struct dso *dso = al->map->dso; diff --git a/tools/perf/util/hist.c b/tools/perf/util/hist.c index 48d5906..d2b94c4 100644 --- a/tools/perf/util/hist.c +++ b/tools/perf/util/hist.c @@ -453,6 +453,7 @@ struct hist_entry *__hists__add_entry(struct hists *hists, .map = al->map, .sym = al->sym, }, + .socket = al->socket, .cpu = al->cpu, .cpumode = al->cpumode, .ip = al->addr, diff --git a/tools/perf/util/sort.h b/tools/perf/util/sort.h index 3c2a399..7cf1cf7 100644 --- a/tools/perf/util/sort.h +++ b/tools/perf/util/sort.h @@ -90,6 +90,7 @@ struct hist_entry { struct comm *comm; u64 ip; u64 transaction; + s32 socket; s32 cpu; u8 cpumode; diff --git a/tools/perf/util/symbol.h b/tools/perf/util/symbol.h index 440ba8a..40073c6 100644 --- a/tools/perf/util/symbol.h +++ b/tools/perf/util/symbol.h @@ -191,6 +191,7 @@ struct addr_location { u8 filtered; u8 cpumode; s32 cpu; + s32 socket; }; struct symsrc {