diff options
author | Jiri Olsa <jolsa@kernel.org> | 2015-09-07 04:38:03 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-09-15 08:48:32 -0400 |
commit | 01ca9fd41d6f2ad796a6b109b5253e06b6ae6dc7 (patch) | |
tree | 59da19c7f1b5d716a0442229e40af73844b09b89 /tools/include | |
parent | 9bae1e8c3fe5359ce17309b894f54667fd563e98 (diff) |
tools: Add err.h with ERR_PTR PTR_ERR interface
Adding part of the kernel's <linux/err.h> interface:
inline void * __must_check ERR_PTR(long error);
inline long __must_check PTR_ERR(__force const void *ptr);
inline bool __must_check IS_ERR(__force const void *ptr);
It will be used to propagate error through pointers in following
patches.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Reviewed-by: Raphael Beamonte <raphael.beamonte@gmail.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Matt Fleming <matt@codeblueprint.co.uk>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1441615087-13886-2-git-send-email-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/include')
-rw-r--r-- | tools/include/linux/err.h | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/tools/include/linux/err.h b/tools/include/linux/err.h new file mode 100644 index 000000000000..c9ada48f5156 --- /dev/null +++ b/tools/include/linux/err.h | |||
@@ -0,0 +1,49 @@ | |||
1 | #ifndef __TOOLS_LINUX_ERR_H | ||
2 | #define __TOOLS_LINUX_ERR_H | ||
3 | |||
4 | #include <linux/compiler.h> | ||
5 | #include <linux/types.h> | ||
6 | |||
7 | #include <asm/errno.h> | ||
8 | |||
9 | /* | ||
10 | * Original kernel header comment: | ||
11 | * | ||
12 | * Kernel pointers have redundant information, so we can use a | ||
13 | * scheme where we can return either an error code or a normal | ||
14 | * pointer with the same return value. | ||
15 | * | ||
16 | * This should be a per-architecture thing, to allow different | ||
17 | * error and pointer decisions. | ||
18 | * | ||
19 | * Userspace note: | ||
20 | * The same principle works for userspace, because 'error' pointers | ||
21 | * fall down to the unused hole far from user space, as described | ||
22 | * in Documentation/x86/x86_64/mm.txt for x86_64 arch: | ||
23 | * | ||
24 | * 0000000000000000 - 00007fffffffffff (=47 bits) user space, different per mm hole caused by [48:63] sign extension | ||
25 | * ffffffffffe00000 - ffffffffffffffff (=2 MB) unused hole | ||
26 | * | ||
27 | * It should be the same case for other architectures, because | ||
28 | * this code is used in generic kernel code. | ||
29 | */ | ||
30 | #define MAX_ERRNO 4095 | ||
31 | |||
32 | #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO) | ||
33 | |||
34 | static inline void * __must_check ERR_PTR(long error) | ||
35 | { | ||
36 | return (void *) error; | ||
37 | } | ||
38 | |||
39 | static inline long __must_check PTR_ERR(__force const void *ptr) | ||
40 | { | ||
41 | return (long) ptr; | ||
42 | } | ||
43 | |||
44 | static inline bool __must_check IS_ERR(__force const void *ptr) | ||
45 | { | ||
46 | return IS_ERR_VALUE((unsigned long)ptr); | ||
47 | } | ||
48 | |||
49 | #endif /* _LINUX_ERR_H */ | ||