sparc64: Fix __copy_{to,from}_user_inatomic defines.

Alexander Beregalov reports oops in __bzero() called from
copy_from_user_fixup() called from iov_iter_copy_from_user_atomic(),
when running dbench on tmpfs on sparc64: its __copy_from_user_inatomic
and __copy_to_user_inatomic should be avoiding, not calling, the fixups.

Signed-off-by: Hugh Dickins <hugh@veritas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Hugh Dickins and committed by David S. Miller 145e1c00 770a4241

+2 -2
+2 -2
arch/sparc/include/asm/uaccess_64.h
··· 265 265 266 266 #define strlen_user __strlen_user 267 267 #define strnlen_user __strnlen_user 268 - #define __copy_to_user_inatomic __copy_to_user 269 - #define __copy_from_user_inatomic __copy_from_user 268 + #define __copy_to_user_inatomic ___copy_to_user 269 + #define __copy_from_user_inatomic ___copy_from_user 270 270 271 271 #endif /* __ASSEMBLY__ */ 272 272