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

TOMOYO Linux Cross Reference
Linux/fs/ocfs2/ocfs2_lockid.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 /fs/ocfs2/ocfs2_lockid.h (Version linux-6.11-rc3) and /fs/ocfs2/ocfs2_lockid.h (Version linux-2.4.37.11)


  1 /* SPDX-License-Identifier: GPL-2.0-or-later *      1 
  2 /*                                                
  3  * ocfs2_lockid.h                                 
  4  *                                                
  5  * Defines OCFS2 lockid bits.                     
  6  *                                                
  7  * Copyright (C) 2002, 2005 Oracle.  All right    
  8  */                                               
  9                                                   
 10 #ifndef OCFS2_LOCKID_H                            
 11 #define OCFS2_LOCKID_H                            
 12                                                   
 13 /* lock ids are made up in the following manne    
 14  * name[0]     --> type                           
 15  * name[1-6]   --> 6 pad characters, reserved     
 16  * name[7-22]  --> block number, expressed in     
 17  * name[23-30] --> i_generation, expressed in     
 18  * name[31]    --> '\0' */                        
 19 #define OCFS2_LOCK_ID_MAX_LEN  32                 
 20 #define OCFS2_LOCK_ID_PAD "000000"                
 21                                                   
 22 #define OCFS2_DENTRY_LOCK_INO_START 18            
 23                                                   
 24 enum ocfs2_lock_type {                            
 25         OCFS2_LOCK_TYPE_META = 0,                 
 26         OCFS2_LOCK_TYPE_DATA,                     
 27         OCFS2_LOCK_TYPE_SUPER,                    
 28         OCFS2_LOCK_TYPE_RENAME,                   
 29         OCFS2_LOCK_TYPE_RW,                       
 30         OCFS2_LOCK_TYPE_DENTRY,                   
 31         OCFS2_LOCK_TYPE_OPEN,                     
 32         OCFS2_LOCK_TYPE_FLOCK,                    
 33         OCFS2_LOCK_TYPE_QINFO,                    
 34         OCFS2_LOCK_TYPE_NFS_SYNC,                 
 35         OCFS2_LOCK_TYPE_ORPHAN_SCAN,              
 36         OCFS2_LOCK_TYPE_REFCOUNT,                 
 37         OCFS2_LOCK_TYPE_TRIM_FS,                  
 38         OCFS2_NUM_LOCK_TYPES                      
 39 };                                                
 40                                                   
 41 static inline char ocfs2_lock_type_char(enum o    
 42 {                                                 
 43         char c;                                   
 44         switch (type) {                           
 45                 case OCFS2_LOCK_TYPE_META:        
 46                         c = 'M';                  
 47                         break;                    
 48                 case OCFS2_LOCK_TYPE_DATA:        
 49                         c = 'D';                  
 50                         break;                    
 51                 case OCFS2_LOCK_TYPE_SUPER:       
 52                         c = 'S';                  
 53                         break;                    
 54                 case OCFS2_LOCK_TYPE_RENAME:      
 55                         c = 'R';                  
 56                         break;                    
 57                 case OCFS2_LOCK_TYPE_RW:          
 58                         c = 'W';                  
 59                         break;                    
 60                 case OCFS2_LOCK_TYPE_DENTRY:      
 61                         c = 'N';                  
 62                         break;                    
 63                 case OCFS2_LOCK_TYPE_OPEN:        
 64                         c = 'O';                  
 65                         break;                    
 66                 case OCFS2_LOCK_TYPE_FLOCK:       
 67                         c = 'F';                  
 68                         break;                    
 69                 case OCFS2_LOCK_TYPE_QINFO:       
 70                         c = 'Q';                  
 71                         break;                    
 72                 case OCFS2_LOCK_TYPE_NFS_SYNC:    
 73                         c = 'Y';                  
 74                         break;                    
 75                 case OCFS2_LOCK_TYPE_ORPHAN_SC    
 76                         c = 'P';                  
 77                         break;                    
 78                 case OCFS2_LOCK_TYPE_REFCOUNT:    
 79                         c = 'T';                  
 80                         break;                    
 81                 case OCFS2_LOCK_TYPE_TRIM_FS:     
 82                         c = 'I';                  
 83                         break;                    
 84                 default:                          
 85                         c = '\0';                 
 86         }                                         
 87                                                   
 88         return c;                                 
 89 }                                                 
 90                                                   
 91 static char *ocfs2_lock_type_strings[] = {        
 92         [OCFS2_LOCK_TYPE_META] = "Meta",          
 93         [OCFS2_LOCK_TYPE_DATA] = "Data",          
 94         [OCFS2_LOCK_TYPE_SUPER] = "Super",        
 95         [OCFS2_LOCK_TYPE_RENAME] = "Rename",      
 96         /* Need to differntiate from [R]ename.    
 97          * important job it does, anyway. */      
 98         [OCFS2_LOCK_TYPE_RW] = "Write/Read",      
 99         [OCFS2_LOCK_TYPE_DENTRY] = "Dentry",      
100         [OCFS2_LOCK_TYPE_OPEN] = "Open",          
101         [OCFS2_LOCK_TYPE_FLOCK] = "Flock",        
102         [OCFS2_LOCK_TYPE_QINFO] = "Quota",        
103         [OCFS2_LOCK_TYPE_NFS_SYNC] = "NFSSync"    
104         [OCFS2_LOCK_TYPE_ORPHAN_SCAN] = "Orpha    
105         [OCFS2_LOCK_TYPE_REFCOUNT] = "Refcount    
106         [OCFS2_LOCK_TYPE_TRIM_FS] = "TrimFs",     
107 };                                                
108                                                   
109 static inline const char *ocfs2_lock_type_stri    
110 {                                                 
111 #ifdef __KERNEL__                                 
112         BUG_ON(type >= OCFS2_NUM_LOCK_TYPES);     
113 #endif                                            
114         return ocfs2_lock_type_strings[type];     
115 }                                                 
116                                                   
117 #endif  /* OCFS2_LOCKID_H */                      
118                                                   

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