2005-04-17 06:20:36 +08:00
|
|
|
#ifndef _LINUX_ERR_H
|
|
|
|
#define _LINUX_ERR_H
|
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
|
|
|
#include <asm/errno.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Kernel pointers have redundant information, so we can use a
|
|
|
|
* scheme where we can return either an error code or a dentry
|
|
|
|
* pointer with the same return value.
|
|
|
|
*
|
|
|
|
* This should be a per-architecture thing, to allow different
|
|
|
|
* error and pointer decisions.
|
|
|
|
*/
|
2006-07-01 19:36:25 +08:00
|
|
|
#define MAX_ERRNO 4095
|
|
|
|
|
2006-09-27 16:50:55 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2006-07-01 19:36:25 +08:00
|
|
|
#define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
|
2005-05-20 13:43:37 +08:00
|
|
|
|
2010-05-25 05:33:00 +08:00
|
|
|
static inline void * __must_check ERR_PTR(long error)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
return (void *) error;
|
|
|
|
}
|
|
|
|
|
2013-07-04 06:04:54 +08:00
|
|
|
static inline long __must_check PTR_ERR(__force const void *ptr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
return (long) ptr;
|
|
|
|
}
|
|
|
|
|
2013-07-04 06:04:54 +08:00
|
|
|
static inline long __must_check IS_ERR(__force const void *ptr)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2005-05-20 13:43:37 +08:00
|
|
|
return IS_ERR_VALUE((unsigned long)ptr);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2013-07-04 06:04:54 +08:00
|
|
|
static inline long __must_check IS_ERR_OR_NULL(__force const void *ptr)
|
2009-12-15 10:00:29 +08:00
|
|
|
{
|
|
|
|
return !ptr || IS_ERR_VALUE((unsigned long)ptr);
|
|
|
|
}
|
|
|
|
|
2008-02-07 16:15:26 +08:00
|
|
|
/**
|
|
|
|
* ERR_CAST - Explicitly cast an error-valued pointer to another pointer type
|
|
|
|
* @ptr: The pointer to cast.
|
|
|
|
*
|
|
|
|
* Explicitly cast an error-valued pointer to another pointer type in such a
|
|
|
|
* way as to make it clear that's what's going on.
|
|
|
|
*/
|
2013-07-04 06:04:54 +08:00
|
|
|
static inline void * __must_check ERR_CAST(__force const void *ptr)
|
2008-02-07 16:15:26 +08:00
|
|
|
{
|
|
|
|
/* cast away the const */
|
|
|
|
return (void *) ptr;
|
|
|
|
}
|
|
|
|
|
2013-07-04 06:04:54 +08:00
|
|
|
static inline int __must_check PTR_RET(__force const void *ptr)
|
2011-03-23 07:34:05 +08:00
|
|
|
{
|
|
|
|
if (IS_ERR(ptr))
|
|
|
|
return PTR_ERR(ptr);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-27 16:50:55 +08:00
|
|
|
#endif
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
#endif /* _LINUX_ERR_H */
|