lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 8 Feb 2022 14:59:11 -0800 From: Nick Desaulniers <ndesaulniers@...gle.com> To: Kees Cook <keescook@...omium.org> Cc: Miguel Ojeda <ojeda@...nel.org>, Nathan Chancellor <nathan@...nel.org>, George Burgess IV <gbiv@...gle.com>, linux-kernel@...r.kernel.org, linux-hardening@...r.kernel.org, llvm@...ts.linux.dev Subject: Re: [PATCH v7 1/8] fortify: Replace open-coded __gnu_inline attribute On Tue, Feb 8, 2022 at 2:53 PM Kees Cook <keescook@...omium.org> wrote: > > Replace open-coded gnu_inline attribute with the normal kernel > convention for attributes: __gnu_inline Reviewed-by: Nick Desaulniers <ndesaulniers@...gle.com> > > Signed-off-by: Kees Cook <keescook@...omium.org> > --- > include/linux/fortify-string.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/fortify-string.h b/include/linux/fortify-string.h > index 53123712bb3b..439aad24ab3b 100644 > --- a/include/linux/fortify-string.h > +++ b/include/linux/fortify-string.h > @@ -2,7 +2,7 @@ > #ifndef _LINUX_FORTIFY_STRING_H_ > #define _LINUX_FORTIFY_STRING_H_ > > -#define __FORTIFY_INLINE extern __always_inline __attribute__((gnu_inline)) > +#define __FORTIFY_INLINE extern __always_inline __gnu_inline > #define __RENAME(x) __asm__(#x) > > void fortify_panic(const char *name) __noreturn __cold; > -- > 2.30.2 > > -- Thanks, ~Nick Desaulniers
Powered by blists - more mailing lists