projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e33d1f6
)
nios2: fix __get_user()
author
Al Viro
<viro@zeniv.linux.org.uk>
Sat, 20 Aug 2016 20:39:01 +0000
(16:39 -0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Tue, 13 Sep 2016 21:49:43 +0000
(17:49 -0400)
a) should not leave crap on fault
b) should _not_ require access_ok() in any cases.
Cc: stable@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
arch/nios2/include/asm/uaccess.h
patch
|
blob
|
blame
|
history
diff --git
a/arch/nios2/include/asm/uaccess.h
b/arch/nios2/include/asm/uaccess.h
index 2b4b9e91967525b722990ba4796324be523a1f9d..0ab82324c8174559ddd478aa0a2dd171b652b8c0 100644
(file)
--- a/
arch/nios2/include/asm/uaccess.h
+++ b/
arch/nios2/include/asm/uaccess.h
@@
-142,7
+142,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)
@@
-169,7
+169,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; \