From: Dirk Müller Date: Tue, 8 Feb 2022 16:50:50 +0000 (+0100) Subject: lib/raid6/test: fix multiple definition linking error X-Git-Tag: v5.15.73~6077 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d342786a0e94e779d983b2348b1971b6ac9b62f0;p=platform%2Fkernel%2Flinux-rpi.git lib/raid6/test: fix multiple definition linking error commit a5359ddd052860bacf957e65fe819c63e974b3a6 upstream. GCC 10+ defaults to -fno-common, which enforces proper declaration of external references using "extern". without this change a link would fail with: lib/raid6/test/algos.c:28: multiple definition of `raid6_call'; lib/raid6/test/test.c:22: first defined here the pq.h header that is included already includes an extern declaration so we can just remove the redundant one here. Cc: Signed-off-by: Dirk Müller Reviewed-by: Paul Menzel Signed-off-by: Song Liu Signed-off-by: Greg Kroah-Hartman --- diff --git a/lib/raid6/test/test.c b/lib/raid6/test/test.c index a3cf071..841a552 100644 --- a/lib/raid6/test/test.c +++ b/lib/raid6/test/test.c @@ -19,7 +19,6 @@ #define NDISKS 16 /* Including P and Q */ const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(PAGE_SIZE))); -struct raid6_calls raid6_call; char *dataptrs[NDISKS]; char data[NDISKS][PAGE_SIZE] __attribute__((aligned(PAGE_SIZE)));