18d59ecb2SHans Petter Selasky /*-
28d59ecb2SHans Petter Selasky  * Copyright (c) 2010 Isilon Systems, Inc.
38d59ecb2SHans Petter Selasky  * Copyright (c) 2010 iX Systems, Inc.
48d59ecb2SHans Petter Selasky  * Copyright (c) 2010 Panasas, Inc.
5677a229cSHans Petter Selasky  * Copyright (c) 2013-2016 Mellanox Technologies, Ltd.
68d59ecb2SHans Petter Selasky  * All rights reserved.
78d59ecb2SHans Petter Selasky  *
88d59ecb2SHans Petter Selasky  * Redistribution and use in source and binary forms, with or without
98d59ecb2SHans Petter Selasky  * modification, are permitted provided that the following conditions
108d59ecb2SHans Petter Selasky  * are met:
118d59ecb2SHans Petter Selasky  * 1. Redistributions of source code must retain the above copyright
128d59ecb2SHans Petter Selasky  *    notice unmodified, this list of conditions, and the following
138d59ecb2SHans Petter Selasky  *    disclaimer.
148d59ecb2SHans Petter Selasky  * 2. Redistributions in binary form must reproduce the above copyright
158d59ecb2SHans Petter Selasky  *    notice, this list of conditions and the following disclaimer in the
168d59ecb2SHans Petter Selasky  *    documentation and/or other materials provided with the distribution.
178d59ecb2SHans Petter Selasky  *
188d59ecb2SHans Petter Selasky  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
198d59ecb2SHans Petter Selasky  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
208d59ecb2SHans Petter Selasky  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
218d59ecb2SHans Petter Selasky  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
228d59ecb2SHans Petter Selasky  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
238d59ecb2SHans Petter Selasky  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
248d59ecb2SHans Petter Selasky  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
258d59ecb2SHans Petter Selasky  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
268d59ecb2SHans Petter Selasky  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
278d59ecb2SHans Petter Selasky  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
288d59ecb2SHans Petter Selasky  */
29307f78f3SVladimir Kondratyev #ifndef	_LINUXKPI_LINUX_ERR_H_
30307f78f3SVladimir Kondratyev #define	_LINUXKPI_LINUX_ERR_H_
318d59ecb2SHans Petter Selasky 
3247c0672bSHans Petter Selasky #include <sys/types.h>
3347c0672bSHans Petter Selasky 
34677a229cSHans Petter Selasky #include <linux/compiler.h>
35677a229cSHans Petter Selasky 
368d59ecb2SHans Petter Selasky #define MAX_ERRNO	4095
378d59ecb2SHans Petter Selasky 
38de66c9a1SJohn Baldwin #define IS_ERR_VALUE(x) unlikely((x) >= (uintptr_t)-MAX_ERRNO)
398d59ecb2SHans Petter Selasky 
408d59ecb2SHans Petter Selasky static inline void *
ERR_PTR(long error)418d59ecb2SHans Petter Selasky ERR_PTR(long error)
428d59ecb2SHans Petter Selasky {
43de66c9a1SJohn Baldwin 	return (void *)(intptr_t)error;
448d59ecb2SHans Petter Selasky }
458d59ecb2SHans Petter Selasky 
468d59ecb2SHans Petter Selasky static inline long
PTR_ERR(const void * ptr)478d59ecb2SHans Petter Selasky PTR_ERR(const void *ptr)
488d59ecb2SHans Petter Selasky {
49de66c9a1SJohn Baldwin 	return (intptr_t)ptr;
508d59ecb2SHans Petter Selasky }
518d59ecb2SHans Petter Selasky 
52de66c9a1SJohn Baldwin static inline bool
IS_ERR(const void * ptr)538d59ecb2SHans Petter Selasky IS_ERR(const void *ptr)
548d59ecb2SHans Petter Selasky {
55de66c9a1SJohn Baldwin 	return IS_ERR_VALUE((uintptr_t)ptr);
568d59ecb2SHans Petter Selasky }
578d59ecb2SHans Petter Selasky 
58de66c9a1SJohn Baldwin static inline bool
IS_ERR_OR_NULL(const void * ptr)598d59ecb2SHans Petter Selasky IS_ERR_OR_NULL(const void *ptr)
608d59ecb2SHans Petter Selasky {
61de66c9a1SJohn Baldwin 	return !ptr || IS_ERR_VALUE((uintptr_t)ptr);
628d59ecb2SHans Petter Selasky }
638d59ecb2SHans Petter Selasky 
648d59ecb2SHans Petter Selasky static inline void *
ERR_CAST(const void * ptr)6547c0672bSHans Petter Selasky ERR_CAST(const void *ptr)
668d59ecb2SHans Petter Selasky {
6747c0672bSHans Petter Selasky 	return __DECONST(void *, ptr);
688d59ecb2SHans Petter Selasky }
698d59ecb2SHans Petter Selasky 
708d59ecb2SHans Petter Selasky static inline int
PTR_ERR_OR_ZERO(const void * ptr)718d59ecb2SHans Petter Selasky PTR_ERR_OR_ZERO(const void *ptr)
728d59ecb2SHans Petter Selasky {
738d59ecb2SHans Petter Selasky 	if (IS_ERR(ptr))
748d59ecb2SHans Petter Selasky 		return PTR_ERR(ptr);
758d59ecb2SHans Petter Selasky 	else
768d59ecb2SHans Petter Selasky 		return 0;
778d59ecb2SHans Petter Selasky }
788d59ecb2SHans Petter Selasky 
798d59ecb2SHans Petter Selasky #define PTR_RET(p) PTR_ERR_OR_ZERO(p)
808d59ecb2SHans Petter Selasky 
81307f78f3SVladimir Kondratyev #endif	/* _LINUXKPI_LINUX_ERR_H_ */
82