diff options
author | Jonas Bonn <jonas@southpole.se> | 2012-05-25 02:24:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-05-25 11:17:43 -0400 |
commit | 603d6637aeb9a14cd0087d7c24c3777bfa51fcbf (patch) | |
tree | 8b86e31d3d0a9d88b12629c27d2607d6e1420ac8 /arch/openrisc/include | |
parent | ece78b7df734726e790dcab207f463401ff80440 (diff) |
openrisc: use generic strncpy_from_user
As per commits 2922585b9329 ("lib: Sparc's strncpy_from_user is generic
enough, move under lib/") and 92ae03f2ef99 ("x86: merge 32/64-bit
versions of 'strncpy_from_user()' and speed it up"), and corresponding
discussion on linux-arch.
Signed-off-by: Jonas Bonn <jonas@southpole.se>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/openrisc/include')
-rw-r--r-- | arch/openrisc/include/asm/uaccess.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/arch/openrisc/include/asm/uaccess.h b/arch/openrisc/include/asm/uaccess.h index f5abaa0ffc38..04b93de92636 100644 --- a/arch/openrisc/include/asm/uaccess.h +++ b/arch/openrisc/include/asm/uaccess.h | |||
@@ -313,14 +313,10 @@ clear_user(void *addr, unsigned long size) | |||
313 | return size; | 313 | return size; |
314 | } | 314 | } |
315 | 315 | ||
316 | extern int __strncpy_from_user(char *dst, const char *src, long count); | 316 | #define user_addr_max() \ |
317 | (segment_eq(get_fs(), USER_DS) ? TASK_SIZE : ~0UL) | ||
317 | 318 | ||
318 | static inline long strncpy_from_user(char *dst, const char *src, long count) | 319 | extern long strncpy_from_user(char *dest, const char __user *src, long count); |
319 | { | ||
320 | if (access_ok(VERIFY_READ, src, 1)) | ||
321 | return __strncpy_from_user(dst, src, count); | ||
322 | return -EFAULT; | ||
323 | } | ||
324 | 320 | ||
325 | /* | 321 | /* |
326 | * Return the size of a string (including the ending 0) | 322 | * Return the size of a string (including the ending 0) |