Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / err.h
blob17c55df13615a9bda172e80c6f4711c11f3183e8
1 #ifndef _LINUX_ERR_H
2 #define _LINUX_ERR_H
4 #include <linux/compiler.h>
6 #include <asm/errno.h>
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.
13 * This should be a per-architecture thing, to allow different
14 * error and pointer decisions.
16 static inline void *ERR_PTR(long error)
18 return (void *) error;
21 static inline long PTR_ERR(const void *ptr)
23 return (long) ptr;
26 static inline long IS_ERR(const void *ptr)
28 return unlikely((unsigned long)ptr > (unsigned long)-1000L);
31 #endif /* _LINUX_ERR_H */