s390/dasd: fix failfast for disconnected devices
[linux-2.6/btrfs-unstable.git] / include / linux / uaccess.h
blob558129af828a7eb97ad64b1531ac2a4e3f71174d
1 #ifndef __LINUX_UACCESS_H__
2 #define __LINUX_UACCESS_H__
4 #include <linux/sched.h>
5 #include <asm/uaccess.h>
7 static __always_inline void pagefault_disabled_inc(void)
9 current->pagefault_disabled++;
12 static __always_inline void pagefault_disabled_dec(void)
14 current->pagefault_disabled--;
15 WARN_ON(current->pagefault_disabled < 0);
19 * These routines enable/disable the pagefault handler. If disabled, it will
20 * not take any locks and go straight to the fixup table.
22 * User access methods will not sleep when called from a pagefault_disabled()
23 * environment.
25 static inline void pagefault_disable(void)
27 pagefault_disabled_inc();
29 * make sure to have issued the store before a pagefault
30 * can hit.
32 barrier();
35 static inline void pagefault_enable(void)
38 * make sure to issue those last loads/stores before enabling
39 * the pagefault handler again.
41 barrier();
42 pagefault_disabled_dec();
46 * Is the pagefault handler disabled? If so, user access methods will not sleep.
48 #define pagefault_disabled() (current->pagefault_disabled != 0)
51 * The pagefault handler is in general disabled by pagefault_disable() or
52 * when in irq context (via in_atomic()).
54 * This function should only be used by the fault handlers. Other users should
55 * stick to pagefault_disabled().
56 * Please NEVER use preempt_disable() to disable the fault handler. With
57 * !CONFIG_PREEMPT_COUNT, this is like a NOP. So the handler won't be disabled.
58 * in_atomic() will report different values based on !CONFIG_PREEMPT_COUNT.
60 #define faulthandler_disabled() (pagefault_disabled() || in_atomic())
62 #ifndef ARCH_HAS_NOCACHE_UACCESS
64 static inline unsigned long __copy_from_user_inatomic_nocache(void *to,
65 const void __user *from, unsigned long n)
67 return __copy_from_user_inatomic(to, from, n);
70 static inline unsigned long __copy_from_user_nocache(void *to,
71 const void __user *from, unsigned long n)
73 return __copy_from_user(to, from, n);
76 #endif /* ARCH_HAS_NOCACHE_UACCESS */
79 * probe_kernel_read(): safely attempt to read from a location
80 * @dst: pointer to the buffer that shall take the data
81 * @src: address to read from
82 * @size: size of the data chunk
84 * Safely read from address @src to the buffer at @dst. If a kernel fault
85 * happens, handle that and return -EFAULT.
87 extern long probe_kernel_read(void *dst, const void *src, size_t size);
88 extern long __probe_kernel_read(void *dst, const void *src, size_t size);
91 * probe_kernel_write(): safely attempt to write to a location
92 * @dst: address to write to
93 * @src: pointer to the data that shall be written
94 * @size: size of the data chunk
96 * Safely write to address @dst from the buffer at @src. If a kernel fault
97 * happens, handle that and return -EFAULT.
99 extern long notrace probe_kernel_write(void *dst, const void *src, size_t size);
100 extern long notrace __probe_kernel_write(void *dst, const void *src, size_t size);
102 extern long strncpy_from_unsafe(char *dst, const void *unsafe_addr, long count);
105 * probe_kernel_address(): safely attempt to read from a location
106 * @addr: address to read from
107 * @retval: read into this variable
109 * Returns 0 on success, or -EFAULT.
111 #define probe_kernel_address(addr, retval) \
112 probe_kernel_read(&retval, addr, sizeof(retval))
114 #endif /* __LINUX_UACCESS_H__ */