diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2013-05-26 10:31:05 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2013-05-28 03:41:08 -0400 |
commit | 3837a3cfe4a27836e0e9f207eb2d4f00b5a8fcba (patch) | |
tree | 6145b133be4f0ce1a9e1614ca356e5505b617b84 | |
parent | ac093f8d5e76be1f2654acfd7a59d339ba037654 (diff) |
mn10300: uaccess s/might_sleep/might_fault/
The only reason uaccess routines might sleep
is if they fault. Make this explicit.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Peter Zijlstra <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1369577426-26721-6-git-send-email-mst@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/mn10300/include/asm/uaccess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mn10300/include/asm/uaccess.h b/arch/mn10300/include/asm/uaccess.h index 780560b330d9..107508a0e1dd 100644 --- a/arch/mn10300/include/asm/uaccess.h +++ b/arch/mn10300/include/asm/uaccess.h | |||
@@ -471,13 +471,13 @@ extern unsigned long __generic_copy_from_user(void *, const void __user *, | |||
471 | 471 | ||
472 | #define __copy_to_user(to, from, n) \ | 472 | #define __copy_to_user(to, from, n) \ |
473 | ({ \ | 473 | ({ \ |
474 | might_sleep(); \ | 474 | might_fault(); \ |
475 | __copy_to_user_inatomic((to), (from), (n)); \ | 475 | __copy_to_user_inatomic((to), (from), (n)); \ |
476 | }) | 476 | }) |
477 | 477 | ||
478 | #define __copy_from_user(to, from, n) \ | 478 | #define __copy_from_user(to, from, n) \ |
479 | ({ \ | 479 | ({ \ |
480 | might_sleep(); \ | 480 | might_fault(); \ |
481 | __copy_from_user_inatomic((to), (from), (n)); \ | 481 | __copy_from_user_inatomic((to), (from), (n)); \ |
482 | }) | 482 | }) |
483 | 483 | ||