Changeset 85703 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 11, 2020 6:54:01 PM (4 years ago)
- Location:
- trunk/src/VBox/Additions/linux/sharedfolders
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/sharedfolders/regops.c
r85702 r85703 1402 1402 * Check that this is valid user memory that is actually in the kernel range. 1403 1403 */ 1404 #if RTLNX_VER_MIN(5,0,0) || RTLNX_RHEL_ PREREQ(8,1)1404 #if RTLNX_VER_MIN(5,0,0) || RTLNX_RHEL_MIN(8,1) 1405 1405 if ( access_ok((void *)uPtrFrom, cPages << PAGE_SHIFT) 1406 1406 && uPtrFrom >= USER_DS.seg) -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.h
r85698 r85703 99 99 #endif /* < 2.6.0 */ 100 100 101 #if RTLNX_VER_MAX(3,2,0) \ 102 && (!defined(RHEL_MAJOR) || RHEL_MAJOR != 6 || RHEL_MINOR < 10) 101 #if RTLNX_VER_MAX(3,2,0) && !RTLNX_RHEL_MIN(6, 10) 103 102 DECLINLINE(void) set_nlink(struct inode *pInode, unsigned int cLinks) 104 103 {
Note:
See TracChangeset
for help on using the changeset viewer.