x86/boot/compressed: Avoid gcc-11 -Wstringop-overread warning
authorArnd Bergmann <arnd@arndb.de>
Mon, 22 Mar 2021 16:02:39 +0000 (17:02 +0100)
committerIngo Molnar <mingo@kernel.org>
Mon, 22 Mar 2021 23:16:25 +0000 (00:16 +0100)
commite14cfb3bdd0f82147d09e9f46bedda6302f28ee1
tree101a917d41c58ca7fac239718accb6cc36a5715c
parentcdc34cb8f25d3125d30868376b8eae6fe690119b
x86/boot/compressed: Avoid gcc-11 -Wstringop-overread warning

GCC gets confused by the comparison of a pointer to an integer literal,
with the assumption that this is an offset from a NULL pointer and that
dereferencing it is invalid:

  In file included from arch/x86/boot/compressed/misc.c:18:
  In function ‘parse_elf’,
      inlined from ‘extract_kernel’ at arch/x86/boot/compressed/misc.c:442:2:
  arch/x86/boot/compressed/../string.h:15:23: error: ‘__builtin_memcpy’ reading 64 bytes from a region of size 0 [-Werror=stringop-overread]
     15 | #define memcpy(d,s,l) __builtin_memcpy(d,s,l)
        |                       ^~~~~~~~~~~~~~~~~~~~~~~
  arch/x86/boot/compressed/misc.c:283:9: note: in expansion of macro ‘memcpy’
    283 |         memcpy(&ehdr, output, sizeof(ehdr));
        |         ^~~~~~

I could not find any good workaround for this, but as this is only
a warning for a failure during early boot, removing the line entirely
works around the warning.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Martin Sebor <msebor@gmail.com>
Link: https://lore.kernel.org/r/20210322160253.4032422-2-arnd@kernel.org
arch/x86/boot/compressed/misc.c