Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

s390/uaccess: remove dead extern declarations, make functions static

Remove some dead uaccess extern declarations and also make some functions
static, since they are only used locally.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Heiko Carstens and committed by
Martin Schwidefsky
0ff2fe52 b03b4679

+2 -11
-9
arch/s390/lib/uaccess.h
··· 6 6 #ifndef __ARCH_S390_LIB_UACCESS_H 7 7 #define __ARCH_S390_LIB_UACCESS_H 8 8 9 - extern size_t copy_from_user_std(size_t, const void __user *, void *); 10 - extern size_t copy_to_user_std(size_t, void __user *, const void *); 11 - extern size_t strnlen_user_std(size_t, const char __user *); 12 - extern size_t strncpy_from_user_std(size_t, const char __user *, char *); 13 - extern int futex_atomic_cmpxchg_std(u32 *, u32 __user *, u32, u32); 14 - extern int futex_atomic_op_std(int, u32 __user *, int, int *); 15 - 16 - extern size_t copy_from_user_pt(size_t, const void __user *, void *); 17 - extern size_t copy_to_user_pt(size_t, void __user *, const void *); 18 9 extern int futex_atomic_op_pt(int, u32 __user *, int, int *); 19 10 extern int futex_atomic_cmpxchg_pt(u32 *, u32 __user *, u32, u32); 20 11
+2 -2
arch/s390/lib/uaccess_pt.c
··· 211 211 return 0; 212 212 } 213 213 214 - size_t copy_from_user_pt(size_t n, const void __user *from, void *to) 214 + static size_t copy_from_user_pt(size_t n, const void __user *from, void *to) 215 215 { 216 216 size_t rc; 217 217 ··· 223 223 return rc; 224 224 } 225 225 226 - size_t copy_to_user_pt(size_t n, void __user *to, const void *from) 226 + static size_t copy_to_user_pt(size_t n, void __user *to, const void *from) 227 227 { 228 228 if (segment_eq(get_fs(), KERNEL_DS)) 229 229 return copy_in_kernel(n, to, (void __user *) from);