ixgb: fix interface losing macaddr on ifdn/up
[linux-2.6/suspend2-2.6.18.git] / include / linux / err.h
blobff71d2af5da33ac711da7f64957d8d93bad4f91f
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 IS_ERR_VALUE(x) unlikely((x) > (unsigned long)-1000L)
18 static inline void *ERR_PTR(long error)
20 return (void *) error;
23 static inline long PTR_ERR(const void *ptr)
25 return (long) ptr;
28 static inline long IS_ERR(const void *ptr)
30 return IS_ERR_VALUE((unsigned long)ptr);
33 #endif /* _LINUX_ERR_H */