From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Thu, 11 Apr 2019 09:32:34 +0200 From: Martin Schwidefsky Subject: Re: [PATCH 10/12] s390: avoid __builtin_return_address(n) on clang In-Reply-To: References: <20190408212648.2407234-1-arnd@arndb.de> <20190408212648.2407234-10-arnd@arndb.de> <20190410180357.3290d24f@mschwideX1> <20190410121421.1414e179@gandalf.local.home> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20190411093234.5f212a2e@mschwideX1> Sender: linux-kernel-owner@vger.kernel.org List-Archive: List-Post: To: Arnd Bergmann Cc: Steven Rostedt , Heiko Carstens , Ingo Molnar , clang-built-linux@googlegroups.com, Nick Desaulniers , Nathan Chancellor , linux-s390 , Vasily Gorbik , Linux Kernel Mailing List List-ID: On Wed, 10 Apr 2019 21:07:56 +0200 Arnd Bergmann wrote: > On Wed, Apr 10, 2019 at 6:14 PM Steven Rostedt wrote: > > On Wed, 10 Apr 2019 18:03:57 +0200 Martin Schwidefsky wrote: > > > > > > --- a/arch/s390/include/asm/ftrace.h > > > > +++ b/arch/s390/include/asm/ftrace.h > > > > @@ -13,7 +13,12 @@ > > > > > > > > #ifndef __ASSEMBLY__ > > > > > > > > +#ifdef CONFIG_CC_IS_CLANG > > > > +/* https://bugs.llvm.org/show_bug.cgi?id=41424 */ > > > > +#define ftrace_return_address(n) __builtin_return_address(0) > > > > +#else > > > > #define ftrace_return_address(n) __builtin_return_address(n) > > > > +#endif > > > > > > > > void _mcount(void); > > > > void ftrace_caller(void); > > > > > > I can say I like this one. If the compiler can not do __builtin_return_address(n) > > > it feels wrong to just use __builtin_return_address(0). > > > > I agree. The proper return value is 0UL, see include/linux/ftrace.h > > > > /* Archs may use other ways for ADDR1 and beyond */ > > #ifndef ftrace_return_address > > # ifdef CONFIG_FRAME_POINTER > > # define ftrace_return_address(n) __builtin_return_address(n) > > # else > > # define ftrace_return_address(n) 0UL > > # endif > > #endif > > > > This is why we treat zero differently: > > > > #define CALLER_ADDR0 ((unsigned long)ftrace_return_address0) > > #define CALLER_ADDR1 ((unsigned long)ftrace_return_address(1)) > > #define CALLER_ADDR2 ((unsigned long)ftrace_return_address(2)) > > #define CALLER_ADDR3 ((unsigned long)ftrace_return_address(3)) > > #define CALLER_ADDR4 ((unsigned long)ftrace_return_address(4)) > > #define CALLER_ADDR5 ((unsigned long)ftrace_return_address(5)) > > #define CALLER_ADDR6 ((unsigned long)ftrace_return_address(6)) > > Right, got it. > > Martin, do you want me to send a replacement patch, or can you > commit the patch with > > #ifdef CONFIG_CC_IS_CLANG > /* https://bugs.llvm.org/show_bug.cgi?id=41424 */ > #define ftrace_return_address(n) 0UL > #else > #define ftrace_return_address(n) __builtin_return_address(n) > #endif > > instead? Ok, done. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.