VirtualBox

Custom Query (16363 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (391 - 393 of 16363)

Ticket Resolution Summary Owner Reporter
#18515 fixed vboxsf-6.0.4 not compiling on kernel-5.0.3 -> fixed after (not in) 6.0.4/5.2.26 and test builds zd59
Description

My configuration:
Slackware64-current updated 20.3.2019
Kernel-5.0.3
Vbox-6.0.4

After compile/install a new kernel-5.0.3 and reboot, the boot process complains at the end that vboxsf module can not run.
A vboxadd-setup.log file show:

/tmp/vbox.0/vfsmod.c:235:14: error: 'MS_REMOUNT' undeclared (first use in this function); did you mean 'DT_RELCOUNT'?

I found the solution for that - source patch:

--- /opt/VBoxGuestAdditions-6.0.4/src/vboxguest-6.0.4/vboxsf/vfsmod.c	2019-03-19 16:24:00.759229219 +0100
+++ /opt/VBoxGuestAdditions-6.0.4/src/vboxguest-6.0.4/vboxsf/vfsmod.c	2019-03-19 16:27:29.967294113 +0100
@@ -40,9 +40,13 @@
 #include "revision-generated.h"
 #include "product-generated.h"
 #include "VBoxGuestR0LibInternal.h"
-#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
+
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 0, 0)
+# include <uapi/linux/mount.h> /* for MS_REMOUNT */
+#elif LINUX_VERSION_CODE < KERNEL_VERSION(3, 3, 0)
 # include <linux/mount.h>
 #endif
+
 #include <linux/seq_file.h>
 
 MODULE_DESCRIPTION(VBOX_PRODUCT " VFS Module for Host File System Access");

But after extracting the vbox additions package and patching, there is no .configure file to run as described in a solution, just run make all do not work.

Any exact compile procedure to solve this?
Expecting this will be included in a next vbox release (6.0.6).

#14089 fixed vboxsf module crashes during high load => Fixed in SVN / 6.0.6 sleepycal
Description

I was able to reproduce a vboxsf crash twice whilst running "npm install" on a shared directory, which triggers a lot of different file activity (create/link/read/syay etc).

My guest machine is;
Linux vagrant-ubuntu-trusty-64 3.13.0-49-generic #83-Ubuntu SMP Fri Apr 10 20:11:33 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux Ubuntu 14.04.2 LTS

My host machine is;
VirtualBox 4.3.24 on OS X Yosemite 10.10.2

#18238 fixed vboxsf module (6.0.0) does not compile for kernel 3.10 -> fixed after (not in) 5.2.22/6.0.0 or in test builds Max Fedotov
Description

Can not compile vboxsf module during guest additions installation in Oracle Linux 7.2 guest (kernel 3.10.0-327.el7.x86_64) due to missing include in vboxsf/vfsmod.c (results in implicit declarations of functions seq_puts, seq_printf, seq_escape). To fix this I manually added #include <linux/seq_file.h> directive into file, after that module compiled successfully

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy