mm: page_alloc: embed OOM killing naturally into allocation slowpath
[linux-2.6/btrfs-unstable.git] / arch / x86 / lib / usercopy.c
blobddf9ecb53cc3e23171ea889dc47339e67ba5d2c8
1 /*
2 * User address space access functions.
4 * For licencing details see kernel-base/COPYING
5 */
7 #include <linux/highmem.h>
8 #include <linux/module.h>
10 #include <asm/word-at-a-time.h>
11 #include <linux/sched.h>
14 * We rely on the nested NMI work to allow atomic faults from the NMI path; the
15 * nested NMI paths are careful to preserve CR2.
17 unsigned long
18 copy_from_user_nmi(void *to, const void __user *from, unsigned long n)
20 unsigned long ret;
22 if (__range_not_ok(from, n, TASK_SIZE))
23 return 0;
26 * Even though this function is typically called from NMI/IRQ context
27 * disable pagefaults so that its behaviour is consistent even when
28 * called form other contexts.
30 pagefault_disable();
31 ret = __copy_from_user_inatomic(to, from, n);
32 pagefault_enable();
34 return ret;
36 EXPORT_SYMBOL_GPL(copy_from_user_nmi);