forked from pool/virtualbox
f3efb31ed1
OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=382
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
Index: VirtualBox-5.1.30/src/VBox/Runtime/r0drv/linux/waitqueue-r0drv-linux.h
|
|
===================================================================
|
|
--- VirtualBox-5.1.30.orig/src/VBox/Runtime/r0drv/linux/waitqueue-r0drv-linux.h
|
|
+++ VirtualBox-5.1.30/src/VBox/Runtime/r0drv/linux/waitqueue-r0drv-linux.h
|
|
@@ -46,7 +46,7 @@
|
|
typedef struct RTR0SEMLNXWAIT
|
|
{
|
|
/** The wait queue entry. */
|
|
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 13, 0)
|
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
|
wait_queue_entry_t WaitQE;
|
|
#else
|
|
wait_queue_t WaitQE;
|
|
Index: VirtualBox-5.1.30/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
|
|
===================================================================
|
|
--- VirtualBox-5.1.30.orig/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
|
|
+++ VirtualBox-5.1.30/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
|
|
@@ -130,6 +130,10 @@ typedef struct VBOXNETFLTNOTIFIER *PVBOX
|
|
#define SKB_GSO_UDP 0
|
|
#endif
|
|
|
|
+# if 1
|
|
+#define SKB_GSO_UDP 0
|
|
+#endif
|
|
+
|
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 20, 0)
|
|
# define VBOX_HAVE_SKB_VLAN
|
|
#else
|
|
@@ -726,7 +730,7 @@ static struct sk_buff *vboxNetFltLinuxSk
|
|
case PDMNETWORKGSOTYPE_IPV4_TCP:
|
|
fGsoType = SKB_GSO_TCPV4;
|
|
break;
|
|
-# if LINUX_VERSION_CODE < KERNEL_VERSION(4, 14, 0)
|
|
+# if 1
|
|
case PDMNETWORKGSOTYPE_IPV4_UDP:
|
|
fGsoType = SKB_GSO_UDP;
|
|
break;
|