forked from pool/virtualbox
- Now that kernel:HEAD:standard has changed to version 4.12.0-rcX, the VB drivers need some changes for new API's.
File "vbox_fix_for_kernel_4.12.patch" is added. The added installation of "net-tools-deprecated" broke builds for Leap 42.3. That change is now conditional on building for Factory. OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=338
This commit is contained in:
parent
532c4484c9
commit
87881b07fc
108
vbox_fix_for_kernel_4.12.patch
Normal file
108
vbox_fix_for_kernel_4.12.patch
Normal file
@ -0,0 +1,108 @@
|
|||||||
|
Index: VirtualBox-5.1.22/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
|
||||||
|
===================================================================
|
||||||
|
--- VirtualBox-5.1.22.orig/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
|
||||||
|
+++ VirtualBox-5.1.22/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c
|
||||||
|
@@ -1397,7 +1397,7 @@ RTDECL(int) SUPR0Printf(const char *pszF
|
||||||
|
SUPR0DECL(uint32_t) SUPR0GetKernelFeatures(void)
|
||||||
|
{
|
||||||
|
uint32_t fFlags = 0;
|
||||||
|
-#ifdef CONFIG_PAX_KERNEXEC
|
||||||
|
+#if defined(CONFIG_PAX_KERNEXEC) || LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
fFlags |= SUPKERNELFEATURES_GDT_READ_ONLY;
|
||||||
|
#endif
|
||||||
|
#if defined(VBOX_STRICT) || defined(VBOX_WITH_EFLAGS_AC_SET_IN_VBOXDRV)
|
||||||
|
Index: VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
||||||
|
===================================================================
|
||||||
|
--- VirtualBox-5.1.22.orig/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
||||||
|
+++ VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/alloc-r0drv-linux.c
|
||||||
|
@@ -36,6 +36,9 @@
|
||||||
|
#include <iprt/err.h>
|
||||||
|
#include "r0drv/alloc-r0drv.h"
|
||||||
|
#include <linux/kmemleak.h>
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+#include <asm/set_memory.h>
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#if (defined(RT_ARCH_AMD64) || defined(DOXYGEN_RUNNING)) && !defined(RTMEMALLOC_EXEC_HEAP)
|
||||||
|
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 23)
|
||||||
|
Index: VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
|
||||||
|
===================================================================
|
||||||
|
--- VirtualBox-5.1.22.orig/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
|
||||||
|
+++ VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
|
||||||
|
@@ -899,6 +899,9 @@ static struct page *rtR0MemObjLinuxVirtT
|
||||||
|
unsigned long pfn;
|
||||||
|
struct page *pPage;
|
||||||
|
pte_t *pEntry;
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+ p4d_t p4d;
|
||||||
|
+#endif
|
||||||
|
union
|
||||||
|
{
|
||||||
|
pgd_t Global;
|
||||||
|
@@ -917,9 +920,18 @@ static struct page *rtR0MemObjLinuxVirtT
|
||||||
|
u.Global = *pgd_offset(current->active_mm, ulAddr);
|
||||||
|
if (RT_UNLIKELY(pgd_none(u.Global)))
|
||||||
|
return NULL;
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+ p4d = *p4d_offset(&u.Global, ulAddr);
|
||||||
|
+ if (RT_UNLIKELY(p4d_none(p4d) || p4d_large(p4d) || !p4d_present(p4d)))
|
||||||
|
+ return NULL;
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 11)
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+ u.Upper = *pud_offset(&p4d, ulAddr);
|
||||||
|
+#else
|
||||||
|
u.Upper = *pud_offset(&u.Global, ulAddr);
|
||||||
|
+#endif
|
||||||
|
if (RT_UNLIKELY(pud_none(u.Upper)))
|
||||||
|
return NULL;
|
||||||
|
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
|
||||||
|
@@ -1463,13 +1475,23 @@ static int rtR0MemObjLinuxFixPte(struct
|
||||||
|
{
|
||||||
|
int rc = -ENOMEM;
|
||||||
|
pgd_t *pgd;
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+ p4d_t *p4d;
|
||||||
|
+#endif
|
||||||
|
|
||||||
|
spin_lock(&mm->page_table_lock);
|
||||||
|
|
||||||
|
pgd = pgd_offset(mm, ulAddr);
|
||||||
|
if (!pgd_none(*pgd) && !pgd_bad(*pgd))
|
||||||
|
{
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+ p4d = p4d_offset(*pgd, ulAddr);
|
||||||
|
+ if (p4d_none(*p4d))
|
||||||
|
+ goto exit;
|
||||||
|
+ pmd_t *pmd = pmd_offset(p4d, ulAddr);
|
||||||
|
+#else
|
||||||
|
pmd_t *pmd = pmd_offset(pgd, ulAddr);
|
||||||
|
+#endif
|
||||||
|
if (!pmd_none(*pmd))
|
||||||
|
{
|
||||||
|
pte_t *ptep = pte_offset_map(pmd, ulAddr);
|
||||||
|
@@ -1487,6 +1509,9 @@ static int rtR0MemObjLinuxFixPte(struct
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+exit:
|
||||||
|
+#endif
|
||||||
|
spin_unlock(&mm->page_table_lock);
|
||||||
|
return rc;
|
||||||
|
}
|
||||||
|
Index: VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
|
||||||
|
===================================================================
|
||||||
|
--- VirtualBox-5.1.22.orig/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
|
||||||
|
+++ VirtualBox-5.1.22/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
|
||||||
|
@@ -320,6 +320,9 @@ DECLINLINE(unsigned long) msecs_to_jiffi
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 25)
|
||||||
|
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0)
|
||||||
|
+#include <asm/cacheflush.h>
|
||||||
|
+#endif
|
||||||
|
# define MY_SET_PAGES_EXEC(pPages, cPages) set_pages_x(pPages, cPages)
|
||||||
|
# define MY_SET_PAGES_NOEXEC(pPages, cPages) set_pages_nx(pPages, cPages)
|
||||||
|
#else
|
@ -1,4 +1,10 @@
|
|||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 21 16:46:48 UTC 2017 - Larry.Finger@lwfinger.net
|
||||||
|
|
||||||
|
- Now that kernel:HEAD:standard has changed to version 4.12.0-rcX, the VB drivers need some changes for new API's.
|
||||||
|
File "vbox_fix_for_kernel_4.12.patch" is added.
|
||||||
|
The added installation of "net-tools-deprecated" broke builds for Leap 42.3. That change is now conditional on building for Factory.
|
||||||
|
-------------------------------------------------------------------
|
||||||
Sat Jun 10 13:19:05 UTC 2017 - Larry.Finger@lwfinger.net
|
Sat Jun 10 13:19:05 UTC 2017 - Larry.Finger@lwfinger.net
|
||||||
|
|
||||||
- Add installation of package "net-tools-deprecated" as requested in boo#1027742.
|
- Add installation of package "net-tools-deprecated" as requested in boo#1027742.
|
||||||
|
@ -101,6 +101,8 @@ Patch114: vbox_fix_42.3_api.patch
|
|||||||
Patch115: vbox_fix_for_gcc7.patch
|
Patch115: vbox_fix_for_gcc7.patch
|
||||||
# Fix for missing include needed for server 1.19
|
# Fix for missing include needed for server 1.19
|
||||||
Patch116: Fix_for_server_1.19.patch
|
Patch116: Fix_for_server_1.19.patch
|
||||||
|
# Fix for kernel 4.12 API changes
|
||||||
|
Patch117: vbox_fix_for_kernel_4.12.patch
|
||||||
#
|
#
|
||||||
BuildRequires: LibVNCServer-devel
|
BuildRequires: LibVNCServer-devel
|
||||||
BuildRequires: SDL-devel
|
BuildRequires: SDL-devel
|
||||||
@ -173,7 +175,9 @@ BuildRequires: pkgconfig(xrandr)
|
|||||||
Requires: %{name}-host-kmp = %{version}
|
Requires: %{name}-host-kmp = %{version}
|
||||||
Requires(post): sysvinit(syslog)
|
Requires(post): sysvinit(syslog)
|
||||||
Requires(pre): permissions
|
Requires(pre): permissions
|
||||||
|
%if 0%{?suse_version} > 1320
|
||||||
Requires(pre): net-tools-deprecated
|
Requires(pre): net-tools-deprecated
|
||||||
|
%endif
|
||||||
Requires(pre): pwdutils
|
Requires(pre): pwdutils
|
||||||
Requires(pre): %insserv_prereq
|
Requires(pre): %insserv_prereq
|
||||||
Requires(pre): %fillup_prereq
|
Requires(pre): %fillup_prereq
|
||||||
@ -377,6 +381,7 @@ as an "extpack" for VirtualBox. The implementation is licensed under GPL.
|
|||||||
%endif
|
%endif
|
||||||
%patch115 -p1
|
%patch115 -p1
|
||||||
%patch116 -p1
|
%patch116 -p1
|
||||||
|
%patch117 -p1
|
||||||
|
|
||||||
#copy user manual
|
#copy user manual
|
||||||
cp %{SOURCE1} UserManual.pdf
|
cp %{SOURCE1} UserManual.pdf
|
||||||
|
Loading…
Reference in New Issue
Block a user