Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751615AbdIOUFW convert rfc822-to-8bit (ORCPT ); Fri, 15 Sep 2017 16:05:22 -0400 Received: from mga03.intel.com ([134.134.136.65]:63484 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751503AbdIOUFV (ORCPT ); Fri, 15 Sep 2017 16:05:21 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.42,398,1500966000"; d="scan'208";a="152383436" From: "Liang, Kan" To: Arnaldo Carvalho de Melo CC: "peterz@infradead.org" , "mingo@redhat.com" , "linux-kernel@vger.kernel.org" , "jolsa@kernel.org" , "namhyung@kernel.org" , "Hunter, Adrian" , "Odzioba, Lukasz" , "ak@linux.intel.com" Subject: RE: [PATCH RFC V2 07/10] perf tools: change machine comm_exec type to atomic Thread-Topic: [PATCH RFC V2 07/10] perf tools: change machine comm_exec type to atomic Thread-Index: AQHTKqUIrvu9aKxJLkO3X/Z6ypCMYKKybUsAgAO3fbA= Date: Fri, 15 Sep 2017 20:05:11 +0000 Message-ID: <37D7C6CF3E00A74B8858931C1DB2F077537C026E@SHSMSX103.ccr.corp.intel.com> References: <1505096603-215017-1-git-send-email-kan.liang@intel.com> <1505096603-215017-8-git-send-email-kan.liang@intel.com> <20170913152410.GJ5866@kernel.org> In-Reply-To: <20170913152410.GJ5866@kernel.org> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDdiMTQ1OTQtZjcwMy00NGU4LWE4MGMtOTg4MjVlM2Y1YjNlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImplenpoUDFIUTZsT2lpWFVrTVk4cjd1bXNtaWVvbUNCN3JQdHFSb0FrZGc9In0= x-ctpclassification: CTP_IC dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3195 Lines: 99 > Em Sun, Sep 10, 2017 at 07:23:20PM -0700, kan.liang@intel.com escreveu: > > From: Kan Liang > > > > In case there are two or more threads want to change it. > > Please describe the scenario that made you want to have this in place, to > help in reviewing and to have it documented in this patch commit log. > Thinking more about it. For synthesizing event, we don't need to change the comm_exec. PERF_RECORD_MISC_COMM_EXEC is not set in this stage. But we should consider it if we want to multithread the event processing stage. Since it's not an issue for now, I will drop this patch and add some comments in the code for V3. Thanks, Kan > - Arnaldo > > > Signed-off-by: Kan Liang > > --- > > tools/perf/util/machine.c | 11 ++++++----- tools/perf/util/machine.h > > | 2 +- > > 2 files changed, 7 insertions(+), 6 deletions(-) > > > > diff --git a/tools/perf/util/machine.c b/tools/perf/util/machine.c > > index 2f1ad29..bbfb9e0 100644 > > --- a/tools/perf/util/machine.c > > +++ b/tools/perf/util/machine.c > > @@ -64,8 +64,8 @@ int machine__init(struct machine *machine, const > > char *root_dir, pid_t pid) > > > > machine->id_hdr_size = 0; > > machine->kptr_restrict_warned = false; > > - machine->comm_exec = false; > > machine->kernel_start = 0; > > + atomic_set(&machine->comm_exec, 0); > > > > memset(machine->vmlinux_maps, 0, sizeof(machine- > >vmlinux_maps)); > > > > @@ -238,14 +238,15 @@ struct machine *machines__add(struct machines > > *machines, pid_t pid, > > > > void machines__set_comm_exec(struct machines *machines, bool > > comm_exec) { > > + int exec = comm_exec ? 1 : 0; > > struct rb_node *nd; > > > > - machines->host.comm_exec = comm_exec; > > + atomic_set(&machines->host.comm_exec, exec); > > > > for (nd = rb_first(&machines->guests); nd; nd = rb_next(nd)) { > > struct machine *machine = rb_entry(nd, struct machine, > rb_node); > > > > - machine->comm_exec = comm_exec; > > + atomic_set(&machine->comm_exec, exec); > > } > > } > > > > @@ -505,7 +506,7 @@ struct thread *machine__find_thread(struct > machine > > *machine, pid_t pid, struct comm *machine__thread_exec_comm(struct > machine *machine, > > struct thread *thread) > > { > > - if (machine->comm_exec) > > + if (atomic_read(&machine->comm_exec)) > > return thread__exec_comm(thread); > > else > > return thread__comm(thread); > > @@ -521,7 +522,7 @@ int machine__process_comm_event(struct machine > *machine, union perf_event *event > > int err = 0; > > > > if (exec) > > - machine->comm_exec = true; > > + atomic_set(&machine->comm_exec, 1); > > > > if (dump_trace) > > perf_event__fprintf_comm(event, stdout); diff --git > > a/tools/perf/util/machine.h b/tools/perf/util/machine.h index > > 64663eb..fb3c2a2 100644 > > --- a/tools/perf/util/machine.h > > +++ b/tools/perf/util/machine.h > > @@ -38,7 +38,7 @@ struct machine { > > struct rb_node rb_node; > > pid_t pid; > > u16 id_hdr_size; > > - bool comm_exec; > > + atomic_t comm_exec; > > bool kptr_restrict_warned; > > char *root_dir; > > struct threads threads[THREADS__TABLE_SIZE]; > > -- > > 2.5.5