|
Message-Id: <1487410400-28313-1-git-send-email-mpe@ellerman.id.au> Date: Sat, 18 Feb 2017 20:33:20 +1100 From: Michael Ellerman <mpe@...erman.id.au> To: keescook@...omium.org Cc: kernel-hardening@...ts.openwall.com, linux-kernel@...r.kernel.org, geert@...ux-m68k.org Subject: [PATCH] usercopy: Don't test 64-bit get/put_user() on 32-bit powerpc Add PPC32 to the opt-out list, otherwise it breaks the build. Signed-off-by: Michael Ellerman <mpe@...erman.id.au> --- lib/test_user_copy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/test_user_copy.c b/lib/test_user_copy.c index 4a79f2c1cd6e..6f335a3d4ae2 100644 --- a/lib/test_user_copy.c +++ b/lib/test_user_copy.c @@ -37,6 +37,7 @@ !defined(CONFIG_MICROBLAZE) && \ !defined(CONFIG_MN10300) && \ !defined(CONFIG_NIOS2) && \ + !defined(CONFIG_PPC32) && \ !defined(CONFIG_SUPERH)) # define TEST_U64 #endif -- 2.7.4
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.