VirtualBox

Ignore:
Timestamp:
Feb 12, 2021 2:47:03 AM (4 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
142779
Message:

SUPDrv: Build fix. bugref:9937

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c

    r87728 r87729  
    761761                                                    const char *pszLnxModName, void **phMod)
    762762{
     763#if RTLNX_VER_MIN(2,6,30)
    763764    /* Locate the module structure for the caller so can later reference
    764765       and dereference it to prevent unloading while it is being used.
     
    777778    AssertPtrReturn(pszLnxModName, VERR_INVALID_POINTER);
    778779    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
    784794}
    785795EXPORT_SYMBOL(SUPDrvLinuxLdrRegisterWrappedModule);
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette