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

TOMOYO Linux Cross Reference
Linux/include/linux/projid.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/projid.h (Version linux-6.11-rc3) and /include/linux/projid.h (Version linux-2.6.32.71)


  1 /* SPDX-License-Identifier: GPL-2.0 */              1 
  2 #ifndef _LINUX_PROJID_H                           
  3 #define _LINUX_PROJID_H                           
  4                                                   
  5 /*                                                
  6  * A set of types for the internal kernel type    
  7  *                                                
  8  * The types defined in this header allow dist    
  9  * the kernel are values used by userspace and    
 10  * the internal kernel values.  With the addit    
 11  * can be different.  Using the type system ma    
 12  * to detect when we overlook these difference    
 13  *                                                
 14  */                                               
 15 #include <linux/types.h>                          
 16                                                   
 17 struct user_namespace;                            
 18 extern struct user_namespace init_user_ns;        
 19                                                   
 20 typedef __kernel_uid32_t projid_t;                
 21                                                   
 22 typedef struct {                                  
 23         projid_t val;                             
 24 } kprojid_t;                                      
 25                                                   
 26 static inline projid_t __kprojid_val(kprojid_t    
 27 {                                                 
 28         return projid.val;                        
 29 }                                                 
 30                                                   
 31 #define KPROJIDT_INIT(value) (kprojid_t){ valu    
 32                                                   
 33 #define INVALID_PROJID KPROJIDT_INIT(-1)          
 34 #define OVERFLOW_PROJID 65534                     
 35                                                   
 36 static inline bool projid_eq(kprojid_t left, k    
 37 {                                                 
 38         return __kprojid_val(left) == __kproji    
 39 }                                                 
 40                                                   
 41 static inline bool projid_lt(kprojid_t left, k    
 42 {                                                 
 43         return __kprojid_val(left) < __kprojid    
 44 }                                                 
 45                                                   
 46 static inline bool projid_valid(kprojid_t proj    
 47 {                                                 
 48         return !projid_eq(projid, INVALID_PROJ    
 49 }                                                 
 50                                                   
 51 #ifdef CONFIG_USER_NS                             
 52                                                   
 53 extern kprojid_t make_kprojid(struct user_name    
 54                                                   
 55 extern projid_t from_kprojid(struct user_names    
 56 extern projid_t from_kprojid_munged(struct use    
 57                                                   
 58 static inline bool kprojid_has_mapping(struct     
 59 {                                                 
 60         return from_kprojid(ns, projid) != (pr    
 61 }                                                 
 62                                                   
 63 #else                                             
 64                                                   
 65 static inline kprojid_t make_kprojid(struct us    
 66 {                                                 
 67         return KPROJIDT_INIT(projid);             
 68 }                                                 
 69                                                   
 70 static inline projid_t from_kprojid(struct use    
 71 {                                                 
 72         return __kprojid_val(kprojid);            
 73 }                                                 
 74                                                   
 75 static inline projid_t from_kprojid_munged(str    
 76 {                                                 
 77         projid_t projid = from_kprojid(to, kpr    
 78         if (projid == (projid_t)-1)               
 79                 projid = OVERFLOW_PROJID;         
 80         return projid;                            
 81 }                                                 
 82                                                   
 83 static inline bool kprojid_has_mapping(struct     
 84 {                                                 
 85         return true;                              
 86 }                                                 
 87                                                   
 88 #endif /* CONFIG_USER_NS */                       
 89                                                   
 90 #endif /* _LINUX_PROJID_H */                      
 91                                                   

~ [ 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