- Timestamp:
- Jul 25, 2017 9:40:46 AM (7 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxGuestR0LibSharedFolders.c
r63522 r68104 56 56 57 57 58 /** @todo We only need HGCM, not physical memory, so other guests should also 59 * switch to calling vbglR0HGCMInit() and vbglR0HGCMTerminate() instead 60 * of VbglR0SfInit() and VbglR0SfTerm(). */ 61 #ifndef RT_OS_LINUX 58 62 DECLVBGL(int) VbglR0SfInit(void) 59 63 { … … 65 69 VbglTerminate(); 66 70 } 71 #endif 67 72 68 73 DECLVBGL(int) VbglR0SfConnect(PVBGLSFCLIENT pClient) -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r67803 r68104 33 33 #include "revision-generated.h" 34 34 #include "product-generated.h" 35 #include "VBGLInternal.h" 35 36 36 37 MODULE_DESCRIPTION(VBOX_PRODUCT " VFS Module for Host File System Access"); … … 602 603 } 603 604 604 rcVBox = VbglR0 SfInit();605 rcVBox = VbglR0HGCMInit(); 605 606 if (RT_FAILURE(rcVBox)) 606 607 { 607 LogRelFunc(("VbglR0 SfInit failed, rc=%d\n", rcVBox));608 LogRelFunc(("VbglR0HGCMInit failed, rc=%d\n", rcVBox)); 608 609 rcRet = -EPROTO; 609 610 goto fail0; … … 649 650 650 651 fail1: 651 VbglR0 SfTerm();652 VbglR0HGCMTerminate(); 652 653 653 654 fail0: … … 661 662 662 663 VbglR0SfDisconnect(&client_handle); 663 VbglR0 SfTerm();664 VbglR0HGCMTerminate(); 664 665 unregister_filesystem(&vboxsf_fs_type); 665 666 }
Note:
See TracChangeset
for help on using the changeset viewer.