Changeset 98869 in vbox for trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
- Timestamp:
- Mar 7, 2023 5:24:50 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r98103 r98869 1046 1046 * @returns 0 on success, Linux error code otherwise 1047 1047 */ 1048 #if RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1048 #if RTLNX_VER_MIN(6,3,0) 1049 static int vbsf_inode_create(struct mnt_idmap *idmap, struct inode *parent, struct dentry *dentry, umode_t mode, bool excl) 1050 #elif RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1049 1051 static int vbsf_inode_create(struct user_namespace *ns, struct inode *parent, struct dentry *dentry, umode_t mode, bool excl) 1050 1052 #elif RTLNX_VER_MIN(3,6,0) … … 1086 1088 * @returns 0 on success, Linux error code otherwise 1087 1089 */ 1088 #if RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1090 #if RTLNX_VER_MIN(6,3,0) 1091 static int vbsf_inode_mkdir(struct mnt_idmap *idmap, struct inode *parent, struct dentry *dentry, umode_t mode) 1092 #elif RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1089 1093 static int vbsf_inode_mkdir(struct user_namespace *ns, struct inode *parent, struct dentry *dentry, umode_t mode) 1090 1094 #elif RTLNX_VER_MIN(3,3,0) … … 1201 1205 * @returns 0 on success, Linux error code otherwise 1202 1206 */ 1203 #if RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1207 #if RTLNX_VER_MIN(6,3,0) 1208 static int vbsf_inode_rename(struct mnt_idmap *idmap, 1209 struct inode *old_parent, struct dentry *old_dentry, 1210 struct inode *new_parent, struct dentry *new_dentry, unsigned flags) 1211 #elif RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING) 1204 1212 static int vbsf_inode_rename(struct user_namespace *ns, 1205 1213 struct inode *old_parent, struct dentry *old_dentry, … … 1313 1321 * Create a symbolic link. 1314 1322 */ 1315 #if RTLNX_VER_MIN(5,12,0) 1323 #if RTLNX_VER_MIN(6,3,0) 1324 static int vbsf_inode_symlink(struct mnt_idmap *idmap, struct inode *parent, struct dentry *dentry, const char *target) 1325 #elif RTLNX_VER_MIN(5,12,0) 1316 1326 static int vbsf_inode_symlink(struct user_namespace *ns, struct inode *parent, struct dentry *dentry, const char *target) 1317 1327 #else
Note:
See TracChangeset
for help on using the changeset viewer.