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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id DF044C433F5 for ; Tue, 1 Mar 2022 19:20:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234021AbiCATVE (ORCPT ); Tue, 1 Mar 2022 14:21:04 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52184 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233784AbiCATVD (ORCPT ); Tue, 1 Mar 2022 14:21:03 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 19E2B52E03 for ; Tue, 1 Mar 2022 11:20:22 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id C2493B81CAF for ; Tue, 1 Mar 2022 19:20:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id B334BC340EF; Tue, 1 Mar 2022 19:20:17 +0000 (UTC) Date: Tue, 1 Mar 2022 14:20:16 -0500 From: Steven Rostedt To: "Naveen N. Rao" Cc: Masami Hiramatsu , alexei.starovoitov@gmail.com, alyssa.milburn@intel.com, andrew.cooper3@citrix.com, hjl.tools@gmail.com, joao@overdrivepizza.com, jpoimboe@redhat.com, keescook@chromium.org, linux-kernel@vger.kernel.org, mark.rutland@arm.com, mbenes@suse.cz, ndesaulniers@google.com, Peter Zijlstra , samitolvanen@google.com, x86@kernel.org Subject: Re: [PATCH v2 12/39] x86/ibt,ftrace: Search for __fentry__ location Message-ID: <20220301142016.22e787fb@gandalf.local.home> In-Reply-To: <1646159447.ngbqgzj71t.naveen@linux.ibm.com> References: <20220224145138.952963315@infradead.org> <20220224151322.714815604@infradead.org> <20220225005520.c69be2fbdbd28028361792d9@kernel.org> <20220224105847.5c899324@gandalf.local.home> <20220225103449.6084e5314273556f35107cd9@kernel.org> <20220224211919.0612a3f6@rorschach.local.home> <20220225192008.d7a4f2b5558fe43c95909777@kernel.org> <20220225083647.12ceb54b@gandalf.local.home> <1646159447.ngbqgzj71t.naveen@linux.ibm.com> X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 02 Mar 2022 00:27:51 +0530 "Naveen N. Rao" wrote: > Won't this cause issues with ftrace_set_filter_ip() and others? If the > passed-in ip points to func+0 when the actual ftrace location is at some > offset, the ftrace location check in ftrace_match_addr() will now pass, > resulting in adding func+0 to the hash. Should we also update > ftrace_match_addr() to use the ip returned by ftrace_location()? > Yes, ftrace_match_addr() would need to be updated, or at least ftrace_set_filter_ip() which is the only user ftrace_match_addr(), and is currently only used by kprobes, live kernel patching and the direct trampoline example code. -- Steve