aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/lib/uaccess.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/s390/lib/uaccess.h')
-rw-r--r--arch/s390/lib/uaccess.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/arch/s390/lib/uaccess.h b/arch/s390/lib/uaccess.h
index b1a22173d027..e5b9c924b733 100644
--- a/arch/s390/lib/uaccess.h
+++ b/arch/s390/lib/uaccess.h
@@ -6,7 +6,11 @@
6#ifndef __ARCH_S390_LIB_UACCESS_H 6#ifndef __ARCH_S390_LIB_UACCESS_H
7#define __ARCH_S390_LIB_UACCESS_H 7#define __ARCH_S390_LIB_UACCESS_H
8 8
9extern int futex_atomic_op_pt(int, u32 __user *, int, int *); 9size_t copy_from_user_pt(void *to, const void __user *from, size_t n);
10extern int futex_atomic_cmpxchg_pt(u32 *, u32 __user *, u32, u32); 10size_t copy_to_user_pt(void __user *to, const void *from, size_t n);
11size_t copy_in_user_pt(void __user *to, const void __user *from, size_t n);
12size_t clear_user_pt(void __user *to, size_t n);
13size_t strnlen_user_pt(const char __user *src, size_t count);
14size_t strncpy_from_user_pt(char *dst, const char __user *src, size_t count);
11 15
12#endif /* __ARCH_S390_LIB_UACCESS_H */ 16#endif /* __ARCH_S390_LIB_UACCESS_H */