Changeset 99739 in vbox for trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
- Timestamp:
- May 11, 2023 1:01:08 AM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/dirops.c
r99420 r99739 1046 1046 * @returns 0 on success, Linux error code otherwise 1047 1047 */ 1048 #if RTLNX_VER_MIN(6,3,0) 1048 #if RTLNX_VER_MIN(6,3,0) || defined(DOXYGEN_RUNNING) 1049 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)1050 #elif RTLNX_VER_MIN(5,12,0) 1051 1051 static int vbsf_inode_create(struct user_namespace *ns, struct inode *parent, struct dentry *dentry, umode_t mode, bool excl) 1052 1052 #elif RTLNX_VER_MIN(3,6,0) … … 1088 1088 * @returns 0 on success, Linux error code otherwise 1089 1089 */ 1090 #if RTLNX_VER_MIN(6,3,0) 1090 #if RTLNX_VER_MIN(6,3,0) || defined(DOXYGEN_RUNNING) 1091 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)1092 #elif RTLNX_VER_MIN(5,12,0) 1093 1093 static int vbsf_inode_mkdir(struct user_namespace *ns, struct inode *parent, struct dentry *dentry, umode_t mode) 1094 1094 #elif RTLNX_VER_MIN(3,3,0) … … 1205 1205 * @returns 0 on success, Linux error code otherwise 1206 1206 */ 1207 #if RTLNX_VER_MIN(6,3,0) 1207 #if RTLNX_VER_MIN(6,3,0) || defined(DOXYGEN_RUNNING) 1208 1208 static int vbsf_inode_rename(struct mnt_idmap *idmap, 1209 1209 struct inode *old_parent, struct dentry *old_dentry, 1210 1210 struct inode *new_parent, struct dentry *new_dentry, unsigned flags) 1211 #elif RTLNX_VER_MIN(5,12,0) || defined(DOXYGEN_RUNNING)1211 #elif RTLNX_VER_MIN(5,12,0) 1212 1212 static int vbsf_inode_rename(struct user_namespace *ns, 1213 1213 struct inode *old_parent, struct dentry *old_dentry,
Note:
See TracChangeset
for help on using the changeset viewer.