LKML Archive on lore.kernel.org help / color / mirror / Atom feed
From: Christophe Leroy <christophe.leroy@csgroup.eu> To: Nick Desaulniers <ndesaulniers@google.com>, Andrew Morton <akpm@linux-foundation.org> Cc: Linus Torvalds <torvalds@linux-foundation.org>, Rasmus Villemoes <linux@rasmusvillemoes.dk>, Nathan Chancellor <nathan@kernel.org>, Masahiro Yamada <masahiroy@kernel.org>, Joe Perches <joe@perches.com>, Arnd Bergmann <arnd@kernel.org>, Stephen Rothwell <sfr@canb.auug.org.au>, llvm@lists.linux.dev, linux-kernel@vger.kernel.org, Michael Ellerman <mpe@ellerman.id.au>, Benjamin Herrenschmidt <benh@kernel.crashing.org>, Paul Mackerras <paulus@samba.org>, Segher Boessenkool <segher@kernel.crashing.org>, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 06/10] powerpc: remove GCC version check for UPD_CONSTR Date: Sat, 11 Sep 2021 17:34:53 +0200 [thread overview] Message-ID: <10516ec8-2650-3984-76a0-b38245527443@csgroup.eu> (raw) In-Reply-To: <20210910234047.1019925-7-ndesaulniers@google.com> Le 11/09/2021 à 01:40, Nick Desaulniers a écrit : > Now that GCC 5.1 is the minimum supported version, we can drop this > workaround for older versions of GCC. This adversely affected clang, > too. Why do you say that GCC 5.1 is the minimum supported ? As far as I can see, the minimum supported is still 4.9, see https://github.com/torvalds/linux/blob/master/Documentation/process/changes.rst > > Cc: Michael Ellerman <mpe@ellerman.id.au> > Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> > Cc: Paul Mackerras <paulus@samba.org> > Cc: Segher Boessenkool <segher@kernel.crashing.org> > Cc: Christophe Leroy <christophe.leroy@csgroup.eu> > Cc: linuxppc-dev@lists.ozlabs.org > Signed-off-by: Nick Desaulniers <ndesaulniers@google.com> > --- > arch/powerpc/include/asm/asm-const.h | 10 ---------- > 1 file changed, 10 deletions(-) > > diff --git a/arch/powerpc/include/asm/asm-const.h b/arch/powerpc/include/asm/asm-const.h > index 0ce2368bd20f..dbfa5e1e3198 100644 > --- a/arch/powerpc/include/asm/asm-const.h > +++ b/arch/powerpc/include/asm/asm-const.h > @@ -12,16 +12,6 @@ > # define ASM_CONST(x) __ASM_CONST(x) > #endif > > -/* > - * Inline assembly memory constraint > - * > - * GCC 4.9 doesn't properly handle pre update memory constraint "m<>" > - * > - */ > -#if defined(GCC_VERSION) && GCC_VERSION < 50000 > -#define UPD_CONSTR "" > -#else > #define UPD_CONSTR "<>" > -#endif There is no point in keeping UPD_CONSTR if it becomes invariant. You should just replace all instances of UPD_CONSTR with <> and drop UPD_CONSTR completely. Christophe
next prev parent reply other threads:[~2021-09-11 15:35 UTC|newest] Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-09-10 23:40 [PATCH 00/10] raise minimum GCC version to 5.1 Nick Desaulniers 2021-09-10 23:40 ` [PATCH 01/10] Documentation: raise minimum supported version of GCC " Nick Desaulniers 2021-09-10 23:55 ` Nathan Chancellor 2021-09-11 0:16 ` Nick Desaulniers 2021-09-13 16:22 ` Kees Cook 2021-09-10 23:40 ` [PATCH 02/10] compiler.h: drop fallback overflow checkers Nick Desaulniers 2021-09-11 0:04 ` Nathan Chancellor 2021-09-14 15:33 ` Nick Desaulniers 2021-09-14 16:04 ` Nathan Chancellor 2021-09-13 16:21 ` Kees Cook 2021-09-10 23:40 ` [PATCH 03/10] mm/ksm: remove old GCC 4.9+ check Nick Desaulniers 2021-09-11 0:07 ` Nathan Chancellor 2021-09-13 16:22 ` Kees Cook 2021-09-10 23:40 ` [PATCH 04/10] Kconfig.debug: drop GCC 5+ version check for DWARF5 Nick Desaulniers 2021-09-11 0:08 ` Nathan Chancellor 2021-09-13 16:23 ` Kees Cook 2021-09-10 23:40 ` [PATCH 05/10] riscv: remove Kconfig check for GCC version for ARCH_RV64I Nick Desaulniers 2021-09-11 0:09 ` Nathan Chancellor 2021-09-13 16:23 ` Kees Cook 2021-10-05 0:40 ` Palmer Dabbelt 2021-10-05 0:50 ` Kees Cook 2021-10-05 0:57 ` Palmer Dabbelt 2021-09-10 23:40 ` [PATCH 06/10] powerpc: remove GCC version check for UPD_CONSTR Nick Desaulniers 2021-09-10 23:48 ` Nathan Chancellor 2021-09-11 10:43 ` Michael Ellerman 2021-09-11 15:34 ` Christophe Leroy [this message] 2021-09-10 23:40 ` [PATCH 07/10] arm64: remove GCC version check for ARCH_SUPPORTS_INT128 Nick Desaulniers 2021-09-11 0:10 ` Nathan Chancellor 2021-09-13 16:25 ` Kees Cook 2021-09-16 13:23 ` Catalin Marinas 2021-09-10 23:40 ` [PATCH 08/10] Makefile: drop GCC < 5 -fno-var-tracking-assignments workaround Nick Desaulniers 2021-09-11 0:11 ` Nathan Chancellor 2021-09-13 16:25 ` Kees Cook 2021-09-10 23:40 ` [PATCH 09/10] compiler-gcc.h: drop checks for older GCC versions Nick Desaulniers 2021-09-11 0:12 ` Nathan Chancellor 2021-09-13 16:26 ` Kees Cook 2021-09-10 23:40 ` [PATCH 10/10] vmlinux.lds.h: remove old check for GCC 4.9 Nick Desaulniers 2021-09-10 23:50 ` Nathan Chancellor 2021-09-14 15:21 ` Nick Desaulniers 2021-09-13 16:28 ` Kees Cook 2021-09-11 2:19 ` [PATCH 00/10] raise minimum GCC version to 5.1 Kees Cook 2021-09-11 10:42 ` Michael Ellerman 2021-09-13 9:49 ` Pavel Machek 2021-09-13 16:20 ` Kees Cook 2021-09-13 11:27 ` Arnd Bergmann
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=10516ec8-2650-3984-76a0-b38245527443@csgroup.eu \ --to=christophe.leroy@csgroup.eu \ --cc=akpm@linux-foundation.org \ --cc=arnd@kernel.org \ --cc=benh@kernel.crashing.org \ --cc=joe@perches.com \ --cc=linux-kernel@vger.kernel.org \ --cc=linux@rasmusvillemoes.dk \ --cc=linuxppc-dev@lists.ozlabs.org \ --cc=llvm@lists.linux.dev \ --cc=masahiroy@kernel.org \ --cc=mpe@ellerman.id.au \ --cc=nathan@kernel.org \ --cc=ndesaulniers@google.com \ --cc=paulus@samba.org \ --cc=segher@kernel.crashing.org \ --cc=sfr@canb.auug.org.au \ --cc=torvalds@linux-foundation.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).