mirror of
				https://github.com/xdp-project/bpf-examples.git
				synced 2024-05-06 15:54:53 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			610 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			610 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
 | |
| 
 | |
| #ifndef __LINUX_ERR_H
 | |
| #define __LINUX_ERR_H
 | |
| 
 | |
| #include <stdbool.h>
 | |
| #include <linux/types.h>
 | |
| #include <asm/errno.h>
 | |
| 
 | |
| #define MAX_ERRNO       4095
 | |
| 
 | |
| #define IS_ERR_VALUE(x) ((x) >= (unsigned long)-MAX_ERRNO)
 | |
| 
 | |
| static inline void * ERR_PTR(long error_)
 | |
| {
 | |
| 	return (void *) error_;
 | |
| }
 | |
| 
 | |
| static inline long PTR_ERR(const void *ptr)
 | |
| {
 | |
| 	return (long) ptr;
 | |
| }
 | |
| 
 | |
| static inline bool IS_ERR(const void *ptr)
 | |
| {
 | |
| 	return IS_ERR_VALUE((unsigned long)ptr);
 | |
| }
 | |
| 
 | |
| static inline bool IS_ERR_OR_NULL(const void *ptr)
 | |
| {
 | |
| 	return (!ptr) || IS_ERR_VALUE((unsigned long)ptr);
 | |
| }
 | |
| 
 | |
| #endif
 |