Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp319814pxb; Sat, 6 Mar 2021 00:39:14 -0800 (PST) X-Google-Smtp-Source: ABdhPJy0NXiuIshSwWdtps8RlLj+raLDRVSVYgYE26SlS+SIeAwb2cgsd4Ko51MxOPIBsQ0kesaS X-Received: by 2002:a17:906:3105:: with SMTP id 5mr6114305ejx.168.1615019954258; Sat, 06 Mar 2021 00:39:14 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615019954; cv=none; d=google.com; s=arc-20160816; b=Ok81WDBqo2fdQ8uAlH5mk32Sroo4nvwkp3yDrL3z8z2LJhlzFKXGSO3I0uY3PYniZm Uzxs7iA6cGFwwfOQLCMbCMIBQvXJYzwmTVJg3GmPw+51UmQ1t/YuNqLrMCpfLcferxSr Qz2oPNnCsF5MvCzQL6c3AtQ1RO7Mc+oSfcym5ABhN/eY83pafEsaoOc3L/+BVZJjqvuK Su9Vzvk4yIQbjGui3PoZ+GTmyz8OWRBgqmxokg1XJ6iLQ/B/Fp5A0wwY6xAK7mZKSGNq 4wCjntsMcb9u7eIpN3QXnPWhPF7m3m/TYzlvUe+thWcyPTU1DGTJZVj8IAX6i/vhUfj2 SItA== 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=uLmIWGrv1pUXQX257E9a/VtTv7TBWspIqnt9fvGjzKA=; b=eSRBQQtFO5/kuoXf3nfZlaOfm62HW6cbLV1NebCyWhTyvfboNjF2U98aOgc6I4v6zs HG7mVx+ktGKqmEKM97YsYhv4guyM38Ixdfz4J2/nM2jrJoOackNfBalbZCW/klmhPMAw w7RE8zfUnfKYJ0c+DBGuc7OR3Pi39Ba5oHFdLImsYyuzJImc3JbBhrr+j1+tPgAcqd0h OL3cDtlIB+51cpxaXHTlixA8iITCkrddsn9uNJDBR44cmNiL4pdNNtWiP/EyHmKxtgV+ ct1I48BjTsCL0TUTO3sOb9AwoNIyHx6QQy7TL8teVU11pVdM9c9otojzMXZS0Ouej5wY oEcg== 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 j19si3038434ejs.516.2021.03.06.00.38.51; Sat, 06 Mar 2021 00:39:14 -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 S229988AbhCFIaS (ORCPT + 99 others); Sat, 6 Mar 2021 03:30:18 -0500 Received: from szxga04-in.huawei.com ([45.249.212.190]:13136 "EHLO szxga04-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229628AbhCFI3e (ORCPT ); Sat, 6 Mar 2021 03:29:34 -0500 Received: from DGGEMS412-HUB.china.huawei.com (unknown [172.30.72.60]) by szxga04-in.huawei.com (SkyGuard) with ESMTP id 4DsyQq1cMXz16F3p; Sat, 6 Mar 2021 16:27:47 +0800 (CST) Received: from ubuntu1804.huawei.com (10.67.174.61) by DGGEMS412-HUB.china.huawei.com (10.3.19.212) with Microsoft SMTP Server id 14.3.498.0; Sat, 6 Mar 2021 16:29:22 +0800 From: Yang Jihong To: , , , , , , , , , , CC: , Subject: [PATCH] perf annotate: Fix sample events lost in stdio mode Date: Sat, 6 Mar 2021 16:28:59 +0800 Message-ID: <20210306082859.179541-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 have a hist_entry per IP for the 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 add a u8 member to struct sym_hist and use a bit to indicate whether the symbol has been processed. Because different types of event correspond to different sym_hist, no conflict occurs. --- tools/perf/builtin-annotate.c | 22 ++++++++++++++-------- tools/perf/util/annotate.h | 4 ++++ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index a23ba6bb99b6..c8c67892ae82 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -372,15 +372,21 @@ static void hists__find_annotations(struct hists *hists, if (next != NULL) nd = next; } else { - hist_entry__tty_annotate(he, evsel, ann); + struct sym_hist *h = annotated_source__histogram(notes->src, + evsel->idx); + + if (h->processed == 0) { + hist_entry__tty_annotate(he, evsel, ann); + + /* + * Since we have a hist_entry per IP for the same + * symbol, set processed flag of evsel in sym_hist + * to signal we already processed this symbol. + */ + h->processed = 1; + } + 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); } } } diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h index 096cdaf21b01..89872bfdc958 100644 --- a/tools/perf/util/annotate.h +++ b/tools/perf/util/annotate.h @@ -228,6 +228,10 @@ void symbol__calc_percent(struct symbol *sym, struct evsel *evsel); struct sym_hist { u64 nr_samples; u64 period; + + u8 processed : 1, /* whether symbol has been processed, used for annotate */ + __reserved : 7; + struct sym_hist_entry addr[]; }; -- 2.30.GIT