]> Pileus Git - ~andy/linux/blobdiff - arch/mn10300/include/asm/uaccess.h
mn10300: uaccess s/might_sleep/might_fault/
[~andy/linux] / arch / mn10300 / include / asm / uaccess.h
index 780560b330d9ef9109a76b0210185f3bc178ca8e..107508a0e1ddcbaf16e0fa4b5b2f63fab02e7792 100644 (file)
@@ -471,13 +471,13 @@ extern unsigned long __generic_copy_from_user(void *, const void __user *,
 
 #define __copy_to_user(to, from, n)                    \
 ({                                                     \
-       might_sleep();                                  \
+       might_fault();                                  \
        __copy_to_user_inatomic((to), (from), (n));     \
 })
 
 #define __copy_from_user(to, from, n)                  \
 ({                                                     \
-       might_sleep();                                  \
+       might_fault();                                  \
        __copy_from_user_inatomic((to), (from), (n));   \
 })