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 7BDF0C433F5 for ; Fri, 25 Feb 2022 02:19:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236743AbiBYCT4 (ORCPT ); Thu, 24 Feb 2022 21:19:56 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35236 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229794AbiBYCTz (ORCPT ); Thu, 24 Feb 2022 21:19:55 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4556713570D for ; Thu, 24 Feb 2022 18:19:24 -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 dfw.source.kernel.org (Postfix) with ESMTPS id B39596157F for ; Fri, 25 Feb 2022 02:19:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8A824C340E9; Fri, 25 Feb 2022 02:19:21 +0000 (UTC) Date: Thu, 24 Feb 2022 21:19:19 -0500 From: Steven Rostedt To: Masami Hiramatsu Cc: Peter Zijlstra , x86@kernel.org, joao@overdrivepizza.com, hjl.tools@gmail.com, jpoimboe@redhat.com, andrew.cooper3@citrix.com, linux-kernel@vger.kernel.org, ndesaulniers@google.com, keescook@chromium.org, samitolvanen@google.com, mark.rutland@arm.com, alyssa.milburn@intel.com, mbenes@suse.cz, alexei.starovoitov@gmail.com Subject: Re: [PATCH v2 12/39] x86/ibt,ftrace: Search for __fentry__ location Message-ID: <20220224211919.0612a3f6@rorschach.local.home> In-Reply-To: <20220225103449.6084e5314273556f35107cd9@kernel.org> References: <20220224145138.952963315@infradead.org> <20220224151322.714815604@infradead.org> <20220225005520.c69be2fbdbd28028361792d9@kernel.org> <20220224105847.5c899324@gandalf.local.home> <20220225103449.6084e5314273556f35107cd9@kernel.org> 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 Fri, 25 Feb 2022 10:34:49 +0900 Masami Hiramatsu wrote: > > > > + if (!rec) { > > > > + if (!kallsyms_lookup_size_offset(ip, &size, &offset)) > > > > + goto out; > > > > + > > > > + if (!offset) > > > > > > Isn't this 'if (offset)' ? > > > > No, the point to only look for the fentry location if the ip passed in > > points to the start of the function. IOW, +0 offset. > > OK, so this means ftrace_location() will be same as > ftrace_location_range(sym, sym_end) ? No. It only acts like ftrace_location_range(sym, sym_end) if the passed in argument is the ip of the function (kallsyms returns offset = 0) -- Steve