From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-4.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4B274C2BA19 for ; Thu, 23 Apr 2020 11:01:00 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 272D12076C for ; Thu, 23 Apr 2020 11:01:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587639660; bh=lTkMi/ZNt6OC2GMlHpavILsFBilbXzr9Sq3gYRp/Quo=; h=From:To:Cc:Subject:Date:List-ID:From; b=PAD2W8MR+3KZrq1keF0/y9mAf1qAXzx3zvijpoR+zP0UWrfh2zq33KQPBzfp/kjfo AWL0kQvX+Z+XpB5sG/Q2KbKDAzg+f/XREfY0jgoz6+XL3PSWRXcfpAk6Hfh3GeOX4K NXw+GIn6zsVMci0LTCqwAIWvdh25efVWFYQrB2Qk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727957AbgDWLA7 (ORCPT ); Thu, 23 Apr 2020 07:00:59 -0400 Received: from mail.kernel.org ([198.145.29.99]:50056 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727895AbgDWLA7 (ORCPT ); Thu, 23 Apr 2020 07:00:59 -0400 Received: from localhost.localdomain (NE2965lan1.rev.em-net.ne.jp [210.141.244.193]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 581D120704; Thu, 23 Apr 2020 11:00:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1587639658; bh=lTkMi/ZNt6OC2GMlHpavILsFBilbXzr9Sq3gYRp/Quo=; h=From:To:Cc:Subject:Date:From; b=U295c3Sfnwm6J1C5y+rOiboR8YTzaw1H5LHIcFwxCp1EiP3Suh2lURr6OEpb2cF6O AT0hfCR147Y+9WzUU/Mkk7t+A58rayXb4gqwHn4f7lRCgOA1cWp7Neg18MrwiFxrh6 G1Pzbq2o4iz6czYtAv012q85JtWvgHpRBqunWiIM= From: Masami Hiramatsu To: Arnaldo Carvalho de Melo Cc: Masami Hiramatsu , Jiri Olsa , Namhyung Kim , Linux Kernel Mailing List , stable@vger.kernel.org Subject: [PATCH 0/3] perf-probe: Fix __init function and blacklist checking Date: Thu, 23 Apr 2020 20:00:54 +0900 Message-Id: <158763965400.30755.14484569071233923742.stgit@devnote2> X-Mailer: git-send-email 2.20.1 User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Here is a series of fixes related to __init function and blacklist checking routines. Arnaldo noticed me some cases which don't check the __init function checking. I found that the blacklist checking is also not working with KASLR, and also skipped probes are shown in result list unexpectedly. Thank you, --- Masami Hiramatsu (3): perf-probe: Fix to check blacklist address correctly perf-probe: Check address correctness by map instead of _etext perf-probe: Do not show the skipped events tools/perf/builtin-probe.c | 3 +++ tools/perf/util/probe-event.c | 46 +++++++++++++++++++++++++---------------- 2 files changed, 31 insertions(+), 18 deletions(-) -- Masami Hiramatsu (Linaro)