From: Leon Romanovsky <leonro@xxxxxxxxxxxx> Redefine u64_to_user_ptr() macro to be implemented with u64_to_ptr(). Signed-off-by: Leon Romanovsky <leonro@xxxxxxxxxxxx> --- include/linux/kernel.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/include/linux/kernel.h b/include/linux/kernel.h index a738393c9694..1c3a096d9ca3 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h @@ -82,12 +82,7 @@ static inline u64 ptr_to_u64(const void *ptr) } \ ) -#define u64_to_user_ptr(x) ( \ -{ \ - typecheck(u64, x); \ - (void __user *)(uintptr_t)x; \ -} \ -) +#define u64_to_user_ptr(x) u64_to_ptr(void __user, x) /* * This looks more complex than it should be. But we need to -- 2.14.3 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html