From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx2.suse.de ([195.135.220.15]:37322 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729960AbgGHGw1 (ORCPT ); Wed, 8 Jul 2020 02:52:27 -0400 Date: Wed, 8 Jul 2020 08:52:23 +0200 From: Petr Mladek Subject: Re: [PATCH v2 2/2] kbuild: trace functions in subdirectories of lib/ Message-ID: <20200708065223.GA11164@alley> References: <20200707092117.963394-1-masahiroy@kernel.org> <20200707092117.963394-2-masahiroy@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200707092117.963394-2-masahiroy@kernel.org> Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: Masahiro Yamada Cc: linux-kbuild@vger.kernel.org, Ingo Molnar , Steven Rostedt , Anders Roxell , Sami Tolvanen , Brendan Higgins , "David S. Miller" , Haren Myneni , Herbert Xu , Jiri Kosina , Joe Lawrence , Josh Poimboeuf , Miroslav Benes , Tal Gilboa , kunit-dev@googlegroups.com, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, linux-kselftest@vger.kernel.org, live-patching@vger.kernel.org On Tue 2020-07-07 18:21:17, Masahiro Yamada wrote: > ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) > > exists here in sub-directories of lib/ to keep the behavior of > commit 2464a609ded0 ("ftrace: do not trace library functions"). > > Since that commit, not only the objects in lib/ but also the ones in > the sub-directories are excluded from ftrace (although the commit > description did not explicitly mention this). > > However, most of library functions in sub-directories are not so hot. > Re-add them to ftrace. > > Going forward, only the objects right under lib/ will be excluded. > diff --git a/lib/livepatch/Makefile b/lib/livepatch/Makefile > index 9abdf615b088..295b94bff370 100644 > --- a/lib/livepatch/Makefile > +++ b/lib/livepatch/Makefile > @@ -2,8 +2,6 @@ > # > # Makefile for livepatch test code. > > -ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) > - > obj-$(CONFIG_TEST_LIVEPATCH) += test_klp_atomic_replace.o \ > test_klp_callbacks_demo.o \ > test_klp_callbacks_demo2.o \ With this change it might be possible to remove also the last few lines that explicitly added $(CC_FLAGS_FTRACE) for two test modules. The two modules really needed these flags. But they are fine also for the other modules. We could do this later as a followup patch but it would be nice to do so here. Best Regards, Petr PS: BTW: The livepatch selftests fail in Linus's master now. But it seems to be for another reason. I am going to dig into it.