~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/include/linux/err.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/include/linux/err.h (Version linux-6.12-rc7) and /tools/include/linux/err.h (Version linux-2.6.32.71)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef __TOOLS_LINUX_ERR_H                       
  3 #define __TOOLS_LINUX_ERR_H                       
  4                                                   
  5 #include <linux/compiler.h>                       
  6 #include <linux/types.h>                          
  7                                                   
  8 #include <asm/errno.h>                            
  9                                                   
 10 /*                                                
 11  * Original kernel header comment:                
 12  *                                                
 13  * Kernel pointers have redundant information,    
 14  * scheme where we can return either an error     
 15  * pointer with the same return value.            
 16  *                                                
 17  * This should be a per-architecture thing, to    
 18  * error and pointer decisions.                   
 19  *                                                
 20  * Userspace note:                                
 21  * The same principle works for userspace, bec    
 22  * fall down to the unused hole far from user     
 23  * in Documentation/arch/x86/x86_64/mm.rst for    
 24  *                                                
 25  * 0000000000000000 - 00007fffffffffff (=47 bi    
 26  * ffffffffffe00000 - ffffffffffffffff (=2 MB)    
 27  *                                                
 28  * It should be the same case for other archit    
 29  * this code is used in generic kernel code.      
 30  */                                               
 31 #define MAX_ERRNO       4095                      
 32                                                   
 33 #define IS_ERR_VALUE(x) unlikely((x) >= (unsig    
 34                                                   
 35 static inline void * __must_check ERR_PTR(long    
 36 {                                                 
 37         return (void *) error_;                   
 38 }                                                 
 39                                                   
 40 static inline long __must_check PTR_ERR(__forc    
 41 {                                                 
 42         return (long) ptr;                        
 43 }                                                 
 44                                                   
 45 static inline bool __must_check IS_ERR(__force    
 46 {                                                 
 47         return IS_ERR_VALUE((unsigned long)ptr    
 48 }                                                 
 49                                                   
 50 static inline bool __must_check IS_ERR_OR_NULL    
 51 {                                                 
 52         return unlikely(!ptr) || IS_ERR_VALUE(    
 53 }                                                 
 54                                                   
 55 static inline int __must_check PTR_ERR_OR_ZERO    
 56 {                                                 
 57         if (IS_ERR(ptr))                          
 58                 return PTR_ERR(ptr);              
 59         else                                      
 60                 return 0;                         
 61 }                                                 
 62                                                   
 63 /**                                               
 64  * ERR_CAST - Explicitly cast an error-valued     
 65  * @ptr: The pointer to cast.                     
 66  *                                                
 67  * Explicitly cast an error-valued pointer to     
 68  * way as to make it clear that's what's going    
 69  */                                               
 70 static inline void * __must_check ERR_CAST(__f    
 71 {                                                 
 72         /* cast away the const */                 
 73         return (void *) ptr;                      
 74 }                                                 
 75 #endif /* _LINUX_ERR_H */                         
 76                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php