Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753289AbeAQNdr (ORCPT + 1 other); Wed, 17 Jan 2018 08:33:47 -0500 Received: from mail.kernel.org ([198.145.29.99]:60318 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753105AbeAQNdp (ORCPT ); Wed, 17 Jan 2018 08:33:45 -0500 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 9260220836 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=acme@kernel.org Date: Wed, 17 Jan 2018 10:33:42 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: Cheng Jian , peterz@infradead.org, mingo@redhat.com, alexander.shishkin@linux.intel.com, namhyung@kernel.org, xiexiuqi@huawei.com, huawei.libin@huawei.com, wangnan0@huawei.com, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3] perf/trace : Fix repetitious traces of perf on tracepoint Message-ID: <20180117133342.GH30880@kernel.org> References: <1516106438-4143-1-git-send-email-cj.chengjian@huawei.com> <20180116150622.GB17819@krava> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180116150622.GB17819@krava> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.9.1 (2017-09-22) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Em Tue, Jan 16, 2018 at 04:06:22PM +0100, Jiri Olsa escreveu: > On Tue, Jan 16, 2018 at 08:40:38PM +0800, Cheng Jian wrote: > > When i use perf to trace the sched_wakeup_new tracepoint, there is > > a bug that output the same event repetitiously. > > It can be reproduced by : > > > > #./test_fork > > parent pid : 1059 > > child pid : 1060 > > #perf record -e sched:sched_wakeup_new -p 1060 > > > > test_fork is an demo that can generating wakeup_new event, parent > > process does nothing but fork a child process, and then they both > > quit. > > > > There are 4 processors in this machine. before this patch, > > perf script(perf-1058, parent-1059, child-1060) : > > > > test_fork 1059 [001] 62.913689: sched:sched_wakeup_new: comm=test_fork pid=1060 prio=120 target_cpu=002 > > test_fork 1059 [001] 62.913698: sched:sched_wakeup_new: comm=test_fork pid=1060 prio=120 target_cpu=002 > > test_fork 1059 [001] 62.913705: sched:sched_wakeup_new: comm=test_fork pid=1060 prio=120 target_cpu=002 > > > > but ftrace report this event only once : > > > > test_fork-1059 [002] d... 62.913680: sched_wakeup_new: comm=test_fork pid=1060 prio=120 target_cpu=002 > > > > perf script print the same wakeup_new event multiple times. > > > > These events which trigger this issue all specify a target process. > > commit e6dab5ffab59 ("perf/trace: Add ability to set a target task > > for events") has designed a method to trace these events. For > > example, the sched_wakeup and sched_wakeup_new tracepoint will be > > caught when the current task wakeup a target task. > > > > These events are registered as per cpu most of the time and attached > > to the task too, we will get all of them from the perf_event_context > > of this task, they will be matched success but are all the same event. > > So check the cpu number of this event to avoid matching them multiple > > times. > > > > after this patch, perf script(parent-1040, child-1041): > > > > test_fork 1040 [002] 36.536079: sched:sched_wakeup_new: comm=test_fork pid=1041 prio=120 target_cpu=003 > > > > It will match it only once for tracing task(child-1041). > > > > Signed-off-by: Cheng Jian > > the duplicated events are gone.. solution looks ok to me > > Reviewed-and-Tested-by: Jiri Olsa I noticed that in the past as well, will try to test this too. - Arnaldo