Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

frv: 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-3-git-send-email-mst@redhat.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Michael S. Tsirkin and committed by
Ingo Molnar
b607ae78 56d2ef78

+2 -2
+2 -2
arch/frv/include/asm/uaccess.h
··· 280 280 static inline unsigned long __must_check 281 281 __copy_to_user(void __user *to, const void *from, unsigned long n) 282 282 { 283 - might_sleep(); 283 + might_fault(); 284 284 return __copy_to_user_inatomic(to, from, n); 285 285 } 286 286 287 287 static inline unsigned long 288 288 __copy_from_user(void *to, const void __user *from, unsigned long n) 289 289 { 290 - might_sleep(); 290 + might_fault(); 291 291 return __copy_from_user_inatomic(to, from, n); 292 292 } 293 293