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

TOMOYO Linux Cross Reference
Linux/fs/vboxsf/vfsmod.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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/vboxsf/vfsmod.h (Version linux-6.11.5) and /fs/vboxsf/vfsmod.h (Version linux-4.13.16)


  1 /* SPDX-License-Identifier: MIT */                  1 
  2 /*                                                
  3  * VirtualBox Guest Shared Folders support: mo    
  4  *                                                
  5  * Copyright (C) 2006-2018 Oracle Corporation     
  6  */                                               
  7                                                   
  8 #ifndef VFSMOD_H                                  
  9 #define VFSMOD_H                                  
 10                                                   
 11 #include <linux/backing-dev.h>                    
 12 #include <linux/idr.h>                            
 13 #include "shfl_hostintf.h"                        
 14                                                   
 15 #define DIR_BUFFER_SIZE SZ_16K                    
 16                                                   
 17 /* The cast is to prevent assignment of void *    
 18 #define VBOXSF_SBI(sb)  ((struct vboxsf_sbi *)    
 19 #define VBOXSF_I(i)     container_of(i, struct    
 20                                                   
 21 struct vboxsf_handle;                             
 22                                                   
 23 struct vboxsf_options {                           
 24         unsigned long ttl;                        
 25         kuid_t uid;                               
 26         kgid_t gid;                               
 27         bool dmode_set;                           
 28         bool fmode_set;                           
 29         umode_t dmode;                            
 30         umode_t fmode;                            
 31         umode_t dmask;                            
 32         umode_t fmask;                            
 33 };                                                
 34                                                   
 35 struct vboxsf_fs_context {                        
 36         struct vboxsf_options o;                  
 37         char *nls_name;                           
 38 };                                                
 39                                                   
 40 /* per-shared folder information */               
 41 struct vboxsf_sbi {                               
 42         struct vboxsf_options o;                  
 43         struct shfl_fsobjinfo root_info;          
 44         struct idr ino_idr;                       
 45         spinlock_t ino_idr_lock; /* This prote    
 46         struct nls_table *nls;                    
 47         u32 next_generation;                      
 48         u32 root;                                 
 49         int bdi_id;                               
 50 };                                                
 51                                                   
 52 /* per-inode information */                       
 53 struct vboxsf_inode {                             
 54         /* some information was changed, updat    
 55         int force_restat;                         
 56         /* list of open handles for this inode    
 57         struct list_head handle_list;             
 58         /* This mutex protects handle_list acc    
 59         struct mutex handle_list_mutex;           
 60         /* The VFS inode struct */                
 61         struct inode vfs_inode;                   
 62 };                                                
 63                                                   
 64 struct vboxsf_dir_info {                          
 65         struct list_head info_list;               
 66 };                                                
 67                                                   
 68 struct vboxsf_dir_buf {                           
 69         size_t entries;                           
 70         size_t free;                              
 71         size_t used;                              
 72         void *buf;                                
 73         struct list_head head;                    
 74 };                                                
 75                                                   
 76 /* globals */                                     
 77 extern const struct inode_operations vboxsf_di    
 78 extern const struct inode_operations vboxsf_ln    
 79 extern const struct inode_operations vboxsf_re    
 80 extern const struct file_operations vboxsf_dir    
 81 extern const struct file_operations vboxsf_reg    
 82 extern const struct address_space_operations v    
 83 extern const struct dentry_operations vboxsf_d    
 84                                                   
 85 /* from file.c */                                 
 86 struct vboxsf_handle *vboxsf_create_sf_handle(    
 87                                                   
 88 void vboxsf_release_sf_handle(struct inode *in    
 89                                                   
 90 /* from utils.c */                                
 91 struct inode *vboxsf_new_inode(struct super_bl    
 92 int vboxsf_init_inode(struct vboxsf_sbi *sbi,     
 93                        const struct shfl_fsobj    
 94 int vboxsf_create_at_dentry(struct dentry *den    
 95                             struct shfl_create    
 96 int vboxsf_stat(struct vboxsf_sbi *sbi, struct    
 97                 struct shfl_fsobjinfo *info);     
 98 int vboxsf_stat_dentry(struct dentry *dentry,     
 99 int vboxsf_inode_revalidate(struct dentry *den    
100 int vboxsf_getattr(struct mnt_idmap *idmap, co    
101                    struct kstat *kstat, u32 re    
102                    unsigned int query_flags);     
103 int vboxsf_setattr(struct mnt_idmap *idmap, st    
104                    struct iattr *iattr);          
105 struct shfl_string *vboxsf_path_from_dentry(st    
106                                             st    
107 int vboxsf_nlscpy(struct vboxsf_sbi *sbi, char    
108                   const unsigned char *utf8_na    
109 struct vboxsf_dir_info *vboxsf_dir_info_alloc(    
110 void vboxsf_dir_info_free(struct vboxsf_dir_in    
111 int vboxsf_dir_read_all(struct vboxsf_sbi *sbi    
112                         u64 handle);              
113                                                   
114 /* from vboxsf_wrappers.c */                      
115 int vboxsf_connect(void);                         
116 void vboxsf_disconnect(void);                     
117                                                   
118 int vboxsf_create(u32 root, struct shfl_string    
119                   struct shfl_createparms *cre    
120                                                   
121 int vboxsf_close(u32 root, u64 handle);           
122 int vboxsf_remove(u32 root, struct shfl_string    
123 int vboxsf_rename(u32 root, struct shfl_string    
124                   struct shfl_string *dest_pat    
125                                                   
126 int vboxsf_read(u32 root, u64 handle, u64 offs    
127 int vboxsf_write(u32 root, u64 handle, u64 off    
128                                                   
129 int vboxsf_dirinfo(u32 root, u64 handle,          
130                    struct shfl_string *parsed_    
131                    u32 *buf_len, struct shfl_d    
132 int vboxsf_fsinfo(u32 root, u64 handle, u32 fl    
133                   u32 *buf_len, void *buf);       
134                                                   
135 int vboxsf_map_folder(struct shfl_string *fold    
136 int vboxsf_unmap_folder(u32 root);                
137                                                   
138 int vboxsf_readlink(u32 root, struct shfl_stri    
139                     u32 buf_len, u8 *buf);        
140 int vboxsf_symlink(u32 root, struct shfl_strin    
141                    struct shfl_string *old_pat    
142                                                   
143 int vboxsf_set_utf8(void);                        
144 int vboxsf_set_symlinks(void);                    
145                                                   
146 #endif                                            
147                                                   

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