Re: [PATCH 2/2] powerpc/ptrace: Disable array-bounds warning with gcc8

2018-05-08 Thread Michael Ellerman
Khem Raj  writes:

> This masks the new gcc8 warning
>
> regset.h:270:4: error: 'memcpy' offset [-527, -529] is out
> of the bounds [0, 16] of object 'vrsave' with type 'union '

Why would we want to mask the warning rather than fix it?

cheers

> Signed-off-by: Khem Raj 
> Cc: Benjamin Herrenschmidt 
> Cc: linuxppc-dev@lists.ozlabs.org
> ---
>  arch/powerpc/kernel/Makefile | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile
> index 7ac5a68ad6b1..ab159a34704a 100644
> --- a/arch/powerpc/kernel/Makefile
> +++ b/arch/powerpc/kernel/Makefile
> @@ -4,6 +4,7 @@
>  #
>  
>  CFLAGS_ptrace.o  += -DUTS_MACHINE='"$(UTS_MACHINE)"' $(call 
> cc-disable-warning, attribute-alias)
> +CFLAGS_ptrace.o  += $(call cc-disable-warning, array-bounds)
>  CFLAGS_syscalls.o+= $(call cc-disable-warning, attribute-alias)
>  
>  subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
> -- 
> 2.17.0


[PATCH 2/2] powerpc/ptrace: Disable array-bounds warning with gcc8

2018-05-04 Thread Khem Raj
This masks the new gcc8 warning

regset.h:270:4: error: 'memcpy' offset [-527, -529] is out
of the bounds [0, 16] of object 'vrsave' with type 'union '

Signed-off-by: Khem Raj 
Cc: Benjamin Herrenschmidt 
Cc: linuxppc-dev@lists.ozlabs.org
---
 arch/powerpc/kernel/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile
index 7ac5a68ad6b1..ab159a34704a 100644
--- a/arch/powerpc/kernel/Makefile
+++ b/arch/powerpc/kernel/Makefile
@@ -4,6 +4,7 @@
 #
 
 CFLAGS_ptrace.o+= -DUTS_MACHINE='"$(UTS_MACHINE)"' $(call 
cc-disable-warning, attribute-alias)
+CFLAGS_ptrace.o+= $(call cc-disable-warning, array-bounds)
 CFLAGS_syscalls.o  += $(call cc-disable-warning, attribute-alias)
 
 subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
-- 
2.17.0