Changeset 108026 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Feb 3, 2025 2:12:04 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167298
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/utils.c
r107165 r108026 1163 1163 * @note Caller holds no relevant locks, just a dentry reference. 1164 1164 */ 1165 #if RTLNX_VER_MIN(3,6,0) 1165 1166 #if RTLNX_VER_MIN(6,14,0) 1167 static int vbsf_dentry_revalidate(struct inode *parentDir, const struct qstr *parentName, 1168 struct dentry *dentry, unsigned flags) 1169 #elif RTLNX_VER_MIN(3,6,0) 1166 1170 static int vbsf_dentry_revalidate(struct dentry *dentry, unsigned flags) 1167 1171 #elif RTLNX_VER_MIN(2,6,0) … … 1171 1175 #endif 1172 1176 { 1177 #if RTLNX_VER_MIN(6,14,0) 1178 /* Optional, not in use currently. */ 1179 RT_NOREF(parentDir, parentName); 1180 #endif 1173 1181 #if RTLNX_VER_RANGE(2,6,0, 3,6,0) 1174 1182 int const flags = nd ? nd->flags : 0;
Note:
See TracChangeset
for help on using the changeset viewer.