Skip to content
Snippets Groups Projects
Commit 4deaa6fd authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Kees Cook
Browse files

usercopy: ARM NOMMU has no 64-bit get_user


On a NOMMU ARM kernel, we get this link error:

ERROR: "__get_user_bad" [lib/test_user_copy.ko] undefined!

The problem is that the extended get_user/put_user definitions
were only added for the normal (MMU based) case.

We could add it for NOMMU as well, but it seems easier to just not
call it, since no other code needs it.

Fixes: 4c5d7bc6 ("usercopy: Add tests for all get_user() sizes")
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarKees Cook <keescook@chromium.org>
parent 4c5d7bc6
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,8 @@ ...@@ -30,7 +30,8 @@
* As there doesn't appear to be anything that can safely determine * As there doesn't appear to be anything that can safely determine
* their capability at compile-time, we just have to opt-out certain archs. * their capability at compile-time, we just have to opt-out certain archs.
*/ */
#if BITS_PER_LONG == 64 || (!defined(CONFIG_AVR32) && \ #if BITS_PER_LONG == 64 || (!(defined(CONFIG_ARM) && !defined(MMU)) && \
!defined(CONFIG_AVR32) && \
!defined(CONFIG_BLACKFIN) && \ !defined(CONFIG_BLACKFIN) && \
!defined(CONFIG_M32R) && \ !defined(CONFIG_M32R) && \
!defined(CONFIG_M68K) && \ !defined(CONFIG_M68K) && \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment