Opened 10 years ago
Closed 9 years ago
#14851 closed defect (duplicate)
Redhat 7.2 - VirtualBox-5.0-5.0.10_104061_el7-1.x86_64 dkms module build fail
Reported by: | CHARLES | Owned by: | |
---|---|---|---|
Component: | other | Version: | VirtualBox 5.0.10 |
Keywords: | Cc: | ||
Guest type: | other | Host type: | Linux |
Description
Trying to register the VirtualBox kernel modules using DKMSError! Bad return status for module build on kernel: 3.10.0-327.el7.x86_64 (x86_64) Consult /var/lib/dkms/vboxhost/5.0.10/build/make.log for more information.
[FAILED]
(Failed, trying without DKMS)
Recompiling VirtualBox kernel modules [FAILED]
(Look at /var/log/vbox-install.log to find out what went wrong) Verifying : VirtualBox-5.0-5.0.10_104061_el7-1.x86_64
Attachments (2)
Change History (4)
by , 10 years ago
by , 10 years ago
Attachment: | vbox-install.log added |
---|
comment:1 by , 10 years ago
comment:2 by , 9 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Duplicate of #14866. Sorry, I saw that your ticket is older but I already commented on the other one. Thanks for the report.
Looking at VBoxNetFlt-linux.c
It would seems that vlan_tx_tag_present wouldn't be defined for a kernel >= 2.6.27 but less than or equal too 3.20.0
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 20, 0) # define vlan_tx_tag_get(skb) skb_vlan_tag_get(skb) # define vlan_tx_tag_present(skb) skb_vlan_tag_present(skb) #endif
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27)