File fixes_for_leap15.patch of Package virtualbox.8582
Index: VirtualBox-5.2.16/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c =================================================================== --- VirtualBox-5.2.16.orig/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c +++ VirtualBox-5.2.16/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c @@ -150,6 +150,10 @@ typedef struct VBOXNETFLTNOTIFIER *PVBOX # endif #endif +# if 1 +#define SKB_GSO_UDP 0 +#endif + #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 20, 0) # define VBOX_HAVE_SKB_VLAN #else Index: VirtualBox-5.2.16/src/VBox/Additions/linux/drm/vbox_mode.c =================================================================== --- VirtualBox-5.2.16.orig/src/VBox/Additions/linux/drm/vbox_mode.c +++ VirtualBox-5.2.16/src/VBox/Additions/linux/drm/vbox_mode.c @@ -401,11 +401,7 @@ static struct drm_encoder *vbox_best_sin /* pick the encoder ids */ if (enc_id) -#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 15, 0) return drm_encoder_find(connector->dev, NULL, enc_id); -#else - return drm_encoder_find(connector->dev, enc_id); -#endif return NULL; }