2007-10-31 12:53:06 +00:00
|
|
|
#ifndef _LINUX_ERR_H
|
|
|
|
#define _LINUX_ERR_H
|
|
|
|
|
|
|
|
#include <linux/compiler.h>
|
2012-04-09 13:39:55 +00:00
|
|
|
#include <linux/compat.h>
|
2007-10-31 12:53:06 +00:00
|
|
|
|
2016-09-21 02:28:55 +00:00
|
|
|
#include <linux/errno.h>
|
2007-10-31 12:53:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#define MAX_ERRNO 4095
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
|
|
|
#define IS_ERR_VALUE(x) unlikely((x) >= (unsigned long)-MAX_ERRNO)
|
|
|
|
|
|
|
|
static inline void *ERR_PTR(long error)
|
|
|
|
{
|
2019-10-22 19:29:47 +00:00
|
|
|
return (void *)(CONFIG_ERR_PTR_OFFSET + error);
|
2007-10-31 12:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline long PTR_ERR(const void *ptr)
|
|
|
|
{
|
2019-10-22 19:29:47 +00:00
|
|
|
return ((long)ptr - CONFIG_ERR_PTR_OFFSET);
|
2007-10-31 12:53:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline long IS_ERR(const void *ptr)
|
|
|
|
{
|
2019-10-22 19:29:47 +00:00
|
|
|
return IS_ERR_VALUE((unsigned long)PTR_ERR(ptr));
|
2007-10-31 12:53:06 +00:00
|
|
|
}
|
|
|
|
|
2016-10-30 17:46:10 +00:00
|
|
|
static inline bool IS_ERR_OR_NULL(const void *ptr)
|
|
|
|
{
|
2019-10-22 19:29:47 +00:00
|
|
|
return !ptr || IS_ERR_VALUE((unsigned long)PTR_ERR(ptr));
|
2016-10-30 17:46:10 +00:00
|
|
|
}
|
|
|
|
|
2014-06-24 08:10:02 +00: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.
|
|
|
|
*/
|
|
|
|
static inline void * __must_check ERR_CAST(__force const void *ptr)
|
|
|
|
{
|
|
|
|
/* cast away the const */
|
|
|
|
return (void *) ptr;
|
|
|
|
}
|
|
|
|
|
2007-10-31 12:53:06 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _LINUX_ERR_H */
|