Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp1717503pxf; Fri, 12 Mar 2021 17:55:41 -0800 (PST) X-Google-Smtp-Source: ABdhPJzPZ/C3rh+7+IebDZZUZEhlbflEgaVri7QqIva0kWua7PTGHoivJLdAxqbIDqrzNBZrIiC1 X-Received: by 2002:a17:906:7d7:: with SMTP id m23mr11838433ejc.205.1615600541425; Fri, 12 Mar 2021 17:55:41 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615600541; cv=none; d=google.com; s=arc-20160816; b=d0P4w13eEkEdXdq4KCcicmezVU/mMpKyDNVODLerfk7NNfgOeIdHaXN4AXlks6eOd9 x/6AQhgYv7vOakO5JkHPp5Jmrh5N9YZak1qiczSqPJfSDrjbFDDHeMVeoexntJGZLbbF IGGIn6GIe1K9cd3PMjnUGie8eJdZyfQDABLyfXtVMnfi4SDRNRIq187dqczWq9EoJhmE 3EygDddtJE7MixxqFocS6Op9flEOrxBZNaA3ljgVYz/LNTOCpCllask98mgzK1p5KRn7 Mxg7/KBx+jNKj6hCYH4ot+FPQEFYA1Oa5amPUbQt6fpqyhVLBvO78JYQAzuW0AEzXKfO Sz/w== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=gI0ZeeIW3vvg4U8En/Qjz9nmzr48/7pCOQJvU6HwPWA=; b=C2K5anD1ALxcog9LlE3Me2W/mqgzwco4M4Fuoea1aagkne67lpxkF6+87aCFr0mTDP eEymH47z8brHY/aEmaFZz2dhpRcG+hdDNVxxxfs89t0+zNW7SjjHRtae0Bjh8O/diPwE 57alUUBnXa2pmQfBuUxWaLPb3DcHEz9dB4z2WxWw0m/CPNlJyJcoN53MhryZ3/f8J/Vw rKmtWrqG3j4/2u3ITmW9UB5F1JGY9J2bjqIcIA4ECHBhSgYoxeHy5fdrl8rCy0CdxyKh iGvAwTeb7rrVDD0+cBzQe2a5ADKCS2fj6jSlbWp7mnwhdYMUS4akC+3trelJSDRJXfo2 Fe2Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id i17si6956708ejo.365.2021.03.12.17.55.18; Fri, 12 Mar 2021 17:55:41 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231392AbhCMByQ (ORCPT + 99 others); Fri, 12 Mar 2021 20:54:16 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:13508 "EHLO szxga05-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229523AbhCMBx6 (ORCPT ); Fri, 12 Mar 2021 20:53:58 -0500 Received: from DGGEMS402-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga05-in.huawei.com (SkyGuard) with ESMTP id 4Dy5Jz5s3xzrV9D; Sat, 13 Mar 2021 09:52:03 +0800 (CST) Received: from ubuntu1804.huawei.com (10.67.174.61) by DGGEMS402-HUB.china.huawei.com (10.3.19.202) with Microsoft SMTP Server id 14.3.498.0; Sat, 13 Mar 2021 09:53:43 +0800 From: Yang Jihong To: , , , , , , , , , , CC: , Subject: [PATCH v3] perf annotate: Fix sample events lost in stdio mode Date: Sat, 13 Mar 2021 09:53:29 +0800 Message-ID: <20210313015329.215474-1-yangjihong1@huawei.com> X-Mailer: git-send-email 2.30.GIT MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII X-Originating-IP: [10.67.174.61] X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org In hist__find_annotations function, since different hist_entry may point to same symbol, we free notes->src to signal already processed this symbol in stdio mode; when annotate, entry will skipped if notes->src is NULL to avoid repeated output. However, there is a problem, for example, run the following command: # perf record -e branch-misses -e branch-instructions -a sleep 1 perf.data file contains different types of sample event. If the same IP sample event exists in branch-misses and branch-instructions, this event uses the same symbol. When annotate branch-misses events, notes->src corresponding to this event is set to null, as a result, when annotate branch-instructions events, this event is skipped and no annotate is output. Solution of this patch is to remove zfree in hists__find_annotations and change sort order to "dso,symbol" to avoid duplicate output when different processes correspond to the same symbol. --- Changes since v2: - Remove zfree in hists__find_annotations. - Change sort order to avoid duplicate output. Changes since v1: - Change processed flag variable from u8 to bool. tools/perf/builtin-annotate.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index a23ba6bb99b6..0b7f0cb5e993 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -374,13 +374,6 @@ static void hists__find_annotations(struct hists *hists, } else { hist_entry__tty_annotate(he, evsel, ann); nd = rb_next(nd); - /* - * Since we have a hist_entry per IP for the same - * symbol, free he->ms.sym->src to signal we already - * processed this symbol. - */ - zfree(¬es->src->cycles_hist); - zfree(¬es->src); } } } @@ -624,6 +617,11 @@ int cmd_annotate(int argc, const char **argv) if (setup_sorting(annotate.session->evlist) < 0) usage_with_options(annotate_usage, options); } else { + /* Events of different processes may correspond to the same + * symbol, we do not care about the processes in annotate, + * set sort order to avoid repeated output. + */ + sort_order = "dso,symbol"; if (setup_sorting(NULL) < 0) usage_with_options(annotate_usage, options); } -- 2.30.GIT