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

TOMOYO Linux Cross Reference
Linux/include/uapi/linux/shm.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/uapi/linux/shm.h (Version linux-6.11-rc3) and /include/uapi/linux/shm.h (Version linux-2.6.0)


  1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux      1 
  2 #ifndef _UAPI_LINUX_SHM_H_                        
  3 #define _UAPI_LINUX_SHM_H_                        
  4                                                   
  5 #include <linux/ipc.h>                            
  6 #include <linux/errno.h>                          
  7 #include <asm-generic/hugetlb_encode.h>           
  8 #ifndef __KERNEL__                                
  9 #include <unistd.h>                               
 10 #endif                                            
 11                                                   
 12 /*                                                
 13  * SHMMNI, SHMMAX and SHMALL are default upper    
 14  * modified by sysctl. The SHMMAX and SHMALL v    
 15  * be as large possible without facilitating s    
 16  * causes overflows when adjusting the limits     
 17  * "retrieve current limit; add X; update limi    
 18  * advised to make SHMMAX and SHMALL any large    
 19  * suitable for both 32 and 64-bit systems.       
 20  */                                               
 21 #define SHMMIN 1                         /* mi    
 22 #define SHMMNI 4096                      /* ma    
 23 #define SHMMAX (ULONG_MAX - (1UL << 24)) /* ma    
 24 #define SHMALL (ULONG_MAX - (1UL << 24)) /* ma    
 25 #define SHMSEG SHMMNI                    /* ma    
 26                                                   
 27 /* Obsolete, used only for backwards compatibi    
 28 struct shmid_ds {                                 
 29         struct ipc_perm         shm_perm;         
 30         int                     shm_segsz;        
 31         __kernel_old_time_t     shm_atime;        
 32         __kernel_old_time_t     shm_dtime;        
 33         __kernel_old_time_t     shm_ctime;        
 34         __kernel_ipc_pid_t      shm_cpid;         
 35         __kernel_ipc_pid_t      shm_lpid;         
 36         unsigned short          shm_nattch;       
 37         unsigned short          shm_unused;       
 38         void                    *shm_unused2;     
 39         void                    *shm_unused3;     
 40 };                                                
 41                                                   
 42 /* Include the definition of shmid64_ds and sh    
 43 #include <asm/shmbuf.h>                           
 44                                                   
 45 /*                                                
 46  * shmget() shmflg values.                        
 47  */                                               
 48 /* The bottom nine bits are the same as open(2    
 49 #define SHM_R           0400    /* or S_IRUGO     
 50 #define SHM_W           0200    /* or S_IWUGO     
 51 /* Bits 9 & 10 are IPC_CREAT and IPC_EXCL */      
 52 #define SHM_HUGETLB     04000   /* segment wil    
 53 #define SHM_NORESERVE   010000  /* don't check    
 54                                                   
 55 /*                                                
 56  * Huge page size encoding when SHM_HUGETLB is    
 57  * size other than the default is desired.  Se    
 58  */                                               
 59 #define SHM_HUGE_SHIFT  HUGETLB_FLAG_ENCODE_SH    
 60 #define SHM_HUGE_MASK   HUGETLB_FLAG_ENCODE_MA    
 61                                                   
 62 #define SHM_HUGE_64KB   HUGETLB_FLAG_ENCODE_64    
 63 #define SHM_HUGE_512KB  HUGETLB_FLAG_ENCODE_51    
 64 #define SHM_HUGE_1MB    HUGETLB_FLAG_ENCODE_1M    
 65 #define SHM_HUGE_2MB    HUGETLB_FLAG_ENCODE_2M    
 66 #define SHM_HUGE_8MB    HUGETLB_FLAG_ENCODE_8M    
 67 #define SHM_HUGE_16MB   HUGETLB_FLAG_ENCODE_16    
 68 #define SHM_HUGE_32MB   HUGETLB_FLAG_ENCODE_32    
 69 #define SHM_HUGE_256MB  HUGETLB_FLAG_ENCODE_25    
 70 #define SHM_HUGE_512MB  HUGETLB_FLAG_ENCODE_51    
 71 #define SHM_HUGE_1GB    HUGETLB_FLAG_ENCODE_1G    
 72 #define SHM_HUGE_2GB    HUGETLB_FLAG_ENCODE_2G    
 73 #define SHM_HUGE_16GB   HUGETLB_FLAG_ENCODE_16    
 74                                                   
 75 /*                                                
 76  * shmat() shmflg values                          
 77  */                                               
 78 #define SHM_RDONLY      010000  /* read-only a    
 79 #define SHM_RND         020000  /* round attac    
 80 #define SHM_REMAP       040000  /* take-over r    
 81 #define SHM_EXEC        0100000 /* execution a    
 82                                                   
 83 /* super user shmctl commands */                  
 84 #define SHM_LOCK        11                        
 85 #define SHM_UNLOCK      12                        
 86                                                   
 87 /* ipcs ctl commands */                           
 88 #define SHM_STAT        13                        
 89 #define SHM_INFO        14                        
 90 #define SHM_STAT_ANY    15                        
 91                                                   
 92 /* Obsolete, used only for backwards compatibi    
 93 struct  shminfo {                                 
 94         int shmmax;                               
 95         int shmmin;                               
 96         int shmmni;                               
 97         int shmseg;                               
 98         int shmall;                               
 99 };                                                
100                                                   
101 struct shm_info {                                 
102         int used_ids;                             
103         __kernel_ulong_t shm_tot;       /* tot    
104         __kernel_ulong_t shm_rss;       /* tot    
105         __kernel_ulong_t shm_swp;       /* tot    
106         __kernel_ulong_t swap_attempts;           
107         __kernel_ulong_t swap_successes;          
108 };                                                
109                                                   
110                                                   
111 #endif /* _UAPI_LINUX_SHM_H_ */                   
112                                                   

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