aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/err.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/err.h')
-rw-r--r--include/linux/err.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/linux/err.h b/include/linux/err.h
new file mode 100644
index 000000000000..17c55df13615
--- /dev/null
+++ b/include/linux/err.h
@@ -0,0 +1,31 @@
1#ifndef _LINUX_ERR_H
2#define _LINUX_ERR_H
3
4#include <linux/compiler.h>
5
6#include <asm/errno.h>
7
8/*
9 * Kernel pointers have redundant information, so we can use a
10 * scheme where we can return either an error code or a dentry
11 * pointer with the same return value.
12 *
13 * This should be a per-architecture thing, to allow different
14 * error and pointer decisions.
15 */
16static inline void *ERR_PTR(long error)
17{
18 return (void *) error;
19}
20
21static inline long PTR_ERR(const void *ptr)
22{
23 return (long) ptr;
24}
25
26static inline long IS_ERR(const void *ptr)
27{
28 return unlikely((unsigned long)ptr > (unsigned long)-1000L);
29}
30
31#endif /* _LINUX_ERR_H */