dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] Generic: Move __user cast into probe_kernel_address

Caller of probe_kernel_address shouldn't need to know that
pka is internally implemented with __get_user. So move the
__user cast into pka.

Signed-off-by: Andi Kleen <ak@suse.de>
This commit is contained in:
Andi Kleen 2006-12-07 02:14:05 +01:00 committed by Andi Kleen
parent 5df0287ecc
commit 2fff0a4841
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ static inline unsigned long __copy_from_user_nocache(void *to,
long ret; \
\
inc_preempt_count(); \
ret = __get_user(retval, addr); \
ret = __get_user(retval, (__force typeof(*addr) __user *)addr);\
dec_preempt_count(); \
ret; \
})