2005-04-16 16:20:36 -06:00
|
|
|
#ifndef _LINUX_ERR_H
|
|
|
|
#define _LINUX_ERR_H
|
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
2014-04-03 15:48:31 -06:00
|
|
|
#include <linux/types.h>
|
2005-04-16 16:20:36 -06:00
|
|
|
|
|
|
|
#include <asm/errno.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Kernel pointers have redundant information, so we can use a
|
2014-04-03 15:48:31 -06:00
|
|
|
* scheme where we can return either an error code or a normal
|
2005-04-16 16:20:36 -06:00
|
|
|
* pointer with the same return value.
|
|
|
|
*
|
|
|
|
* This should be a per-architecture thing, to allow different
|
|
|
|
* error and pointer decisions.
|
|
|
|
*/
|
2006-07-01 05:36:25 -06:00
|
|
|
#define MAX_ERRNO 4095
|
|
|
|
|
2006-09-27 02:50:55 -06:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2006-07-01 05:36:25 -06:00
|
|
|
#define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
|
2005-05-19 23:43:37 -06:00
|
|
|
|
2010-05-24 15:33:00 -06:00
|
|
|
static inline void * __must_check ERR_PTR(long error)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
|
|
|
return (void *) error;
|
|
|
|
}
|
|
|
|
|
2013-07-03 16:04:54 -06:00
|
|
|
static inline long __must_check PTR_ERR(__force const void *ptr)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
|
|
|
return (long) ptr;
|
|
|
|
}
|
|
|
|
|
2014-04-03 15:48:31 -06:00
|
|
|
static inline bool __must_check IS_ERR(__force const void *ptr)
|
2005-04-16 16:20:36 -06:00
|
|
|
{
|
2005-05-19 23:43:37 -06:00
|
|
|
return IS_ERR_VALUE((unsigned long)ptr);
|
2005-04-16 16:20:36 -06:00
|
|
|
}
|
|
|
|
|
2014-04-03 15:48:31 -06:00
|
|
|
static inline bool __must_check IS_ERR_OR_NULL(__force const void *ptr)
|
2009-12-14 19:00:29 -07:00
|
|
|
{
|
|
|
|
return !ptr || IS_ERR_VALUE((unsigned long)ptr);
|
|
|
|
}
|
|
|
|
|
2008-02-07 01:15:26 -07: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-03 16:04:54 -06:00
|
|
|
static inline void * __must_check ERR_CAST(__force const void *ptr)
|
2008-02-07 01:15:26 -07:00
|
|
|
{
|
|
|
|
/* cast away the const */
|
|
|
|
return (void *) ptr;
|
|
|
|
}
|
|
|
|
|
2013-07-14 19:49:32 -06:00
|
|
|
static inline int __must_check PTR_ERR_OR_ZERO(__force const void *ptr)
|
2011-03-22 17:34:05 -06:00
|
|
|
{
|
|
|
|
if (IS_ERR(ptr))
|
|
|
|
return PTR_ERR(ptr);
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-07-14 19:49:32 -06:00
|
|
|
/* Deprecated */
|
|
|
|
#define PTR_RET(p) PTR_ERR_OR_ZERO(p)
|
|
|
|
|
2006-09-27 02:50:55 -06:00
|
|
|
#endif
|
|
|
|
|
2005-04-16 16:20:36 -06:00
|
|
|
#endif /* _LINUX_ERR_H */
|