Received: by 2002:a05:6a10:9848:0:0:0:0 with SMTP id x8csp1727854pxf; Fri, 12 Mar 2021 18:17:51 -0800 (PST) X-Google-Smtp-Source: ABdhPJxXhWNSF/mDoPJvZ+AKaQz604R2D4BlAUO1Utp/q0TLjOhtAqa8/dfYBTMpG/hd+vtcLyxR X-Received: by 2002:a17:907:7699:: with SMTP id jv25mr10730671ejc.363.1615601870954; Fri, 12 Mar 2021 18:17:50 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1615601870; cv=none; d=google.com; s=arc-20160816; b=U0Q2jdY5h8aSn8ifI6a8ppssdg8nPOV+ed3UPE8Y+Eb34gdCpGSaL5JPfeicZDOf+P eD9TcOhl4PF0MH8BEDWFpXXUvnakJn/4Dizrdpm05/5ybkI3pYwpPwdsO/pQDVyiM6op 5C/+rWoUniNDvO01o+l+DqDEnwq5yqfk04SoK9J0YDdZeAY5oJMf2RxDO/DKH2fzZBnS eBK0Q4MBNQJLMwz63OxciPu3NNsyPh7ERaeZAmIJezKNQB8Q7RtF16vzfnt4W2RTx2Q0 kUiFVWR9+Gmcyn80x6kgey5Ur2SetTbVdBe1Vg1SpfRlUM8XkzG55OnHMHudhDTZ56by noDw== 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=FOYtrehdx2OIoD0nhCGsjf6/SSydMemkHv+H6/s+lnE=; b=opDpb7BJs4i583sZKHQ8FIZVupjv5VE7I8asmMwRwBsIMNz6gSrFEIOZcDK4NztjEH Pej457UUIdPLd+6RdHCU8anMbIwjmMxfyDCqWq9lDwXAVAGyI+Osvp7xgk3D/iUatxOG qhXFCdbXQEJgVnu2A5DrwQTRTLEi546Jd+WcxX0o8N1vY7eGRF0Z1lsekQSYbqmoebLK fR0cbw1rguk7wpPDHBM0lSWMGixGGZtZN2bl9V5jY9WUq0g8wbUAj8FN2qkPz8k2YDy0 uwbYpylXQSvc9RZt9hX4/cT8zyiso+sQ3t/FI7xOKYTJZpgiJRPv9npbjbdJPaVK54UZ LMkg== 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 w6si5033102edq.564.2021.03.12.18.17.28; Fri, 12 Mar 2021 18:17:50 -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 S232311AbhCMCQU (ORCPT + 99 others); Fri, 12 Mar 2021 21:16:20 -0500 Received: from szxga07-in.huawei.com ([45.249.212.35]:13888 "EHLO szxga07-in.huawei.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232257AbhCMCQG (ORCPT ); Fri, 12 Mar 2021 21:16:06 -0500 Received: from DGGEMS407-HUB.china.huawei.com (unknown [172.30.72.58]) by szxga07-in.huawei.com (SkyGuard) with ESMTP id 4Dy5pX61dXz8xP0; Sat, 13 Mar 2021 10:14:12 +0800 (CST) Received: from ubuntu1804.huawei.com (10.67.174.61) by DGGEMS407-HUB.china.huawei.com (10.3.19.207) with Microsoft SMTP Server id 14.3.498.0; Sat, 13 Mar 2021 10:15:53 +0800 From: Yang Jihong To: , , , , , , , , , , CC: , Subject: [PATCH v4] perf annotate: Fix sample events lost in stdio mode Date: Sat, 13 Mar 2021 10:15:40 +0800 Message-ID: <20210313021540.219748-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. --- tools/perf/builtin-annotate.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index a23ba6bb99b6..ad169e3e2e8f 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,12 @@ 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