Changeset 103788 in vbox
- Timestamp:
- Mar 11, 2024 5:50:25 PM (12 months ago)
- svn:sync-xref-src-repo-rev:
- 162157
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-linux.c
r103024 r103788 80 80 #include <VBox/err.h> 81 81 #include <VBox/log.h> 82 #include <VBox/VBoxLnxModInline.h> 82 83 83 84 … … 708 709 PRTLOGGER pRelLogger; 709 710 int rc; 711 712 /* Check if modue loading was disabled. */ 713 if (!vbox_mod_should_load()) 714 return -EINVAL; 710 715 711 716 /* -
trunk/src/VBox/Additions/common/VBoxGuest/linux/files_vboxguest
r103007 r103788 99 99 ${PATH_ROOT}/include/VBox/VBoxGuestMangling.h=>include/VBox/VBoxGuestMangling.h \ 100 100 ${PATH_ROOT}/include/VBox/version.h=>include/VBox/version.h \ 101 ${PATH_ROOT}/include/VBox/VBoxLnxModInline.h=>VBox/VBoxLnxModInline.h \ 101 102 ${PATH_ROOT}/include/VBox/HostServices/GuestPropertySvc.h=>include/VBox/HostServices/GuestPropertySvc.h \ 102 103 ${PATH_ROOT}/include/VBox/vmm/cpuidcall.h=>include/VBox/vmm/cpuidcall.h \ -
trunk/src/VBox/Additions/linux/drm/files_vboxvideo_drv
r98103 r103788 39 39 ${PATH_ROOT}/include/VBox/Graphics/VBoxVideoErr.h=>vbox_err.h \ 40 40 ${PATH_ROOT}/include/VBox/Graphics/VBoxVideoVBE.h=>vboxvideo_vbe.h \ 41 ${PATH_ROOT}/include/VBox/VBoxLnxModInline.h=>VBox/VBoxLnxModInline.h \ 41 42 ${PATH_ROOT}/src/VBox/Additions/common/VBoxVideo/HGSMIBase.cpp=>hgsmi_base.c \ 42 43 ${PATH_ROOT}/src/VBox/Additions/common/VBoxVideo/Modesetting.cpp=>modesetting.c \ -
trunk/src/VBox/Additions/linux/drm/vbox_drv.c
r102874 r103788 64 64 #endif /* !CONFIG_VGA_CONSOLE */ 65 65 66 #include <VBox/VBoxLnxModInline.h> 67 66 68 static int vbox_modeset = -1; 67 69 … … 414 416 static int __init vbox_init(void) 415 417 { 418 /* Check if modue loading was disabled. */ 419 if (!vbox_mod_should_load()) 420 return -EINVAL; 421 416 422 printk("vboxvideo: loading version " VBOX_VERSION_STRING " r" __stringify(VBOX_SVN_REV) "\n"); 417 423 if (VBOX_VIDEO_NOMODESET()) -
trunk/src/VBox/Additions/linux/sharedfolders/files_vboxsf
r103007 r103788 74 74 ${PATH_ROOT}/include/VBox/VMMDev.h=>include/VBox/VMMDev.h \ 75 75 ${PATH_ROOT}/include/VBox/VMMDevCoreTypes.h=>include/VBox/VMMDevCoreTypes.h \ 76 ${PATH_ROOT}/include/VBox/VBoxLnxModInline.h=>VBox/VBoxLnxModInline.h \ 76 77 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibInternal.h=>VBoxGuestR0LibInternal.h \ 77 78 ${PATH_ROOT}/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibGenericRequest.cpp=>VBoxGuestR0LibGenericRequest.c \ -
trunk/src/VBox/Additions/linux/sharedfolders/vfsmod.c
r103067 r103788 64 64 # include <linux/parser.h> 65 65 #endif 66 #include <VBox/VBoxLnxModInline.h> 66 67 67 68 … … 1621 1622 SFLOGFLOW(("vboxsf: init\n")); 1622 1623 1624 /* Check if modue loading was disabled. */ 1625 if (!vbox_mod_should_load()) 1626 return -EINVAL; 1627 1623 1628 /* 1624 1629 * Must be paranoid about the vbsf_mount_info_new size.
Note:
See TracChangeset
for help on using the changeset viewer.