From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755393AbbIHP6i (ORCPT ); Tue, 8 Sep 2015 11:58:38 -0400 Received: from mail.kernel.org ([198.145.29.136]:43096 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754697AbbIHP6g (ORCPT ); Tue, 8 Sep 2015 11:58:36 -0400 Date: Tue, 8 Sep 2015 12:58:31 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: "Wangnan (F)" , kan.liang@intel.com, linux-kernel@vger.kernel.org, lizefan@huawei.com, pi3orama@163.com, Adrian Hunter , Andi Kleen , Jiri Olsa , Namhyung Kim , acme@redhat.com, Stephane Eranian Subject: Re: [PATCH] perf report: Fix invalid memory accessing Message-ID: <20150908155831.GO3475@kernel.org> References: <1441630315-189525-1-git-send-email-wangnan0@huawei.com> <55ED90BE.9090706@huawei.com> <20150908073747.GA2038@krava.brq.redhat.com> <20150908151813.GF2435@redhat.com> <20150908153456.GG2038@krava.brq.redhat.com> <20150908154910.GN3475@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150908154910.GN3475@kernel.org> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Tue, Sep 08, 2015 at 12:49:10PM -0300, Arnaldo Carvalho de Melo escreveu: > Em Tue, Sep 08, 2015 at 05:34:56PM +0200, Jiri Olsa escreveu: > > On Tue, Sep 08, 2015 at 12:18:13PM -0300, Arnaldo Carvalho de Melo wrote: > > > Humm, I think that we can have a pointer to the current perf_env, be it > > > from the current machine, or from the machine environment in the > > > perf.data file in struct machine, that way we don't need to change that > > > function prototype, I'm prototyping this now, will post a patch. > > > > I was thinking of that.. but the perf_env is actualyl related to the > > perf.data not to the current machine.. I think it should be part of > > the session or perf_header > > But what if I want to trace only events that take place in some specific > socket, i.e. what to do when perf_session is not used at all and we are > not dealing with any header, since there are no files involved? So, this is the continuation of this patch: commit ce80d3bef9ff97638ca57a5659ef6ad356f35047 Author: Kan Liang Date: Fri Aug 28 05:48:04 2015 -0400 perf tools: Rename perf_session_env to perf_env As it is not necessarily tied to a perf.data file and needs using in places where a perf_session is not required. Suggested-by: Arnaldo Carvalho de Melo ----------------------------- perf_env not necessarily is related to a perf.data file, we need even to move it away from header.h. I am looking now at where to populate perf_env and set it to machine->env when no perf.data files are being accessed. I should have seen the use cpu_map__get_socket_id() in perf_event__preprocess_sample(), that is unnaceptable, as it will parse that file for each sample, right ;-\ Right now we don't have that much use for the other fields in 'perf_env', just for the CPU topology information, that we will set in addr_location for each sample, but we can have uses for that later, think about a TUI interface for 'perf trace' where we will show what was the command line, etc. - Arnaldo