MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / include / linux / err.h
blob1ab1d44f8d3be7a28c8a1a849c72e1f841424015
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 #define MAX_ERRNO 4095
18 #ifndef __ASSEMBLY__
20 #define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
22 static inline void *ERR_PTR(long error)
24 return (void *) error;
27 static inline long PTR_ERR(const void *ptr)
29 return (long) ptr;
32 static inline long IS_ERR(const void *ptr)
34 return IS_ERR_VALUE((unsigned long)ptr);
37 #endif
39 #endif /* _LINUX_ERR_H */