aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/include/asm/uaccess_64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/uaccess_64.h b/arch/x86/include/asm/uaccess_64.h
index a748253db0c9..dcaa0404cf7b 100644
--- a/arch/x86/include/asm/uaccess_64.h
+++ b/arch/x86/include/asm/uaccess_64.h
@@ -198,7 +198,7 @@ static inline int __copy_from_user_nocache(void *dst, const void __user *src,
198 * non-temporal stores here. Smaller writes get handled 198 * non-temporal stores here. Smaller writes get handled
199 * via regular __copy_from_user(): 199 * via regular __copy_from_user():
200 */ 200 */
201 if (likely(size >= PAGE_SIZE)) 201 if (likely(total >= PAGE_SIZE))
202 return __copy_user_nocache(dst, src, size, 1); 202 return __copy_user_nocache(dst, src, size, 1);
203 else 203 else
204 return __copy_from_user(dst, src, size); 204 return __copy_from_user(dst, src, size);
@@ -207,7 +207,7 @@ static inline int __copy_from_user_nocache(void *dst, const void __user *src,
207static inline int __copy_from_user_inatomic_nocache(void *dst, 207static inline int __copy_from_user_inatomic_nocache(void *dst,
208 const void __user *src, unsigned size, unsigned total) 208 const void __user *src, unsigned size, unsigned total)
209{ 209{
210 if (likely(size >= PAGE_SIZE)) 210 if (likely(total >= PAGE_SIZE))
211 return __copy_user_nocache(dst, src, size, 0); 211 return __copy_user_nocache(dst, src, size, 0);
212 else 212 else
213 return __copy_from_user_inatomic(dst, src, size); 213 return __copy_from_user_inatomic(dst, src, size);