Changeset 58195 in vbox for trunk/src/VBox/Additions/darwin/vboxfs/VBoxVFS-VFSOps.cpp
- Timestamp:
- Oct 12, 2015 3:13:47 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/darwin/vboxfs/VBoxVFS-VFSOps.cpp
r57063 r58195 286 286 if (pMount) 287 287 { 288 rc = vboxCallMapFolder(&g_vboxSFClient, pMount->pShareName, &pMount->pMap);288 rc = VbglR0SfMapFolder(&g_vboxSFClient, pMount->pShareName, &pMount->pMap); 289 289 if (RT_SUCCESS(rc)) 290 290 { … … 302 302 return 0; 303 303 } 304 else 305 PDEBUG("Unable to map shared folder"); 306 304 305 PDEBUG("Unable to map shared folder"); 307 306 vboxvfs_destroy_internal_data(&pMount); 308 307 } … … 354 353 vfs_setfsprivate(mp, NULL); 355 354 356 rc = vboxCallUnmapFolder(&g_vboxSFClient, &pMount->pMap);355 rc = VbglR0SfUnmapFolder(&g_vboxSFClient, &pMount->pMap); 357 356 if (RT_SUCCESS(rc)) 358 357 { … … 361 360 return 0; 362 361 } 363 else 364 { 365 PDEBUG("Unable to unmount shared folder"); 366 rc = EPROTO; 367 } 362 363 PDEBUG("Unable to unmount shared folder"); 364 rc = EPROTO; 368 365 } 369 366 else … … 518 515 AssertReturn(pMount->pShareName, EINVAL); 519 516 520 rc = vboxCallFSInfo(&g_vboxSFClient, &pMount->pMap, 0, SHFL_INFO_GET | SHFL_INFO_VOLUME,521 517 rc = VbglR0SfFsInfo(&g_vboxSFClient, &pMount->pMap, 0, SHFL_INFO_GET | SHFL_INFO_VOLUME, 518 &cbBuffer, (PSHFLDIRINFO)&SHFLVolumeInfo); 522 519 AssertReturn(rc == 0, EPROTO); 523 520
Note:
See TracChangeset
for help on using the changeset viewer.