Custom Query (16363 matches)
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 | ||
| Description |
My configuration:
After compile/install a new kernel-5.0.3 and reboot, the boot process complains at the end that vboxsf module can not run. /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? |
|||
| #14089 | fixed | vboxsf module crashes during high load => Fixed in SVN / 6.0.6 | ||
| 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;
My host machine is; |
|||
| #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 | ||
| 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 |
|||

