Changeset 87729 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Feb 12, 2021 2:47:03 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 142779
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
r87728 r87729 761 761 const char *pszLnxModName, void **phMod) 762 762 { 763 #if RTLNX_VER_MIN(2,6,30) 763 764 /* Locate the module structure for the caller so can later reference 764 765 and dereference it to prevent unloading while it is being used. … … 777 778 AssertPtrReturn(pszLnxModName, VERR_INVALID_POINTER); 778 779 AssertReturn(*pszLnxModName, VERR_INVALID_NAME); 779 struct module *pLnxModule = find_module(pszLnxModName); 780 if (pLnxModule) 781 return supdrvLdrRegisterWrappedModule(&g_DevExt, pWrappedModInfo, pLnxModule, phMod); 782 printk("vboxdrv: find_module(%s) failed in SUPDrvLinuxLdrRegisterWrappedModule!\n", pszLnxModName); 783 return VERR_MODULE_NOT_FOUND; 780 if (mutex_lock_interruptible(&module_mutex) == 0) 781 { 782 struct module *pLnxModule = find_module(pszLnxModName); 783 mutex_unlock(&module_mutex); 784 if (pLnxModule) 785 return supdrvLdrRegisterWrappedModule(&g_DevExt, pWrappedModInfo, pLnxModule, phMod); 786 printk("vboxdrv: find_module(%s) failed in SUPDrvLinuxLdrRegisterWrappedModule!\n", pszLnxModName); 787 return VERR_MODULE_NOT_FOUND; 788 } 789 return VERR_INTERRUPTED; 790 #else 791 printk("vboxdrv: wrapper modules are not supported on 2.6.29 and earlier. sorry.\n"); 792 return VERR_NOT_SUPPORTED; 793 #endif 784 794 } 785 795 EXPORT_SYMBOL(SUPDrvLinuxLdrRegisterWrappedModule);
Note:
See TracChangeset
for help on using the changeset viewer.