unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git] / include / linux / err.h
blob87be24350e91c2788fd68a06dce1da3499d3fc0d
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _LINUX_ERR_H
3 #define _LINUX_ERR_H
5 #include <linux/compiler.h>
6 #include <linux/types.h>
8 #include <asm/errno.h>
11 * Kernel pointers have redundant information, so we can use a
12 * scheme where we can return either an error code or a normal
13 * pointer with the same return value.
15 * This should be a per-architecture thing, to allow different
16 * error and pointer decisions.
18 #define MAX_ERRNO 4095
20 #ifndef __ASSEMBLY__
22 #define IS_ERR_VALUE(x) unlikely((unsigned long)(void *)(x) >= (unsigned long)-MAX_ERRNO)
24 static inline void * __must_check ERR_PTR(long error)
26 return (void *) error;
29 static inline long __must_check PTR_ERR(__force const void *ptr)
31 return (long) ptr;
34 static inline bool __must_check IS_ERR(__force const void *ptr)
36 return IS_ERR_VALUE((unsigned long)ptr);
39 static inline bool __must_check IS_ERR_OR_NULL(__force const void *ptr)
41 return unlikely(!ptr) || IS_ERR_VALUE((unsigned long)ptr);
44 /**
45 * ERR_CAST - Explicitly cast an error-valued pointer to another pointer type
46 * @ptr: The pointer to cast.
48 * Explicitly cast an error-valued pointer to another pointer type in such a
49 * way as to make it clear that's what's going on.
51 static inline void * __must_check ERR_CAST(__force const void *ptr)
53 /* cast away the const */
54 return (void *) ptr;
57 static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
59 if (IS_ERR(ptr))
60 return PTR_ERR(ptr);
61 else
62 return 0;
65 /* Deprecated */
66 #define PTR_RET(p) PTR_ERR_OR_ZERO(p)
68 #endif
70 #endif /* _LINUX_ERR_H */