projects
/
firefly-linux-kernel-4.4.55.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9ce4d2b
)
nios2: fix __get_user()
author
Al Viro
<viro@zeniv.linux.org.uk>
Sat, 20 Aug 2016 20:39:01 +0000
(16:39 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 24 Sep 2016 08:07:44 +0000
(10:07 +0200)
commit
2e29f50ad5e23db37dde9be71410d95d50241ecd
upstream.
a) should not leave crap on fault
b) should _not_ require access_ok() in any cases.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/nios2/include/asm/uaccess.h
patch
|
blob
|
history
diff --git
a/arch/nios2/include/asm/uaccess.h
b/arch/nios2/include/asm/uaccess.h
index caa51ff85a3c7d0ac7c57cf034758185aad64724..ebac5bbfc340d435fe31132fd58cb27121ad13bc 100644
(file)
--- a/
arch/nios2/include/asm/uaccess.h
+++ b/
arch/nios2/include/asm/uaccess.h
@@
-139,7
+139,7
@@
extern long strnlen_user(const char __user *s, long n);
#define __get_user_unknown(val, size, ptr, err) do { \
err = 0; \
- if (
copy_from_user(&(val), ptr, size)) {
\
+ if (
__copy_from_user(&(val), ptr, size)) {
\
err = -EFAULT; \
} \
} while (0)
@@
-166,7
+166,7
@@
do { \
({ \
long __gu_err = -EFAULT; \
const __typeof__(*(ptr)) __user *__gu_ptr = (ptr); \
- unsigned long __gu_val
;
\
+ unsigned long __gu_val
= 0;
\
__get_user_common(__gu_val, sizeof(*(ptr)), __gu_ptr, __gu_err);\
(x) = (__force __typeof__(x))__gu_val; \
__gu_err; \