forked from pool/virtualbox
cbf52ea5f0
Hi Larry, here we go.. this version of VB is tested successfully with TW and 15.0, builds with 42.3, 15.0, 15.0 with Kernel:stable, 15.1, TW, and behaves properly autostart-wise. So it's good to go from my POV. Cheers, Pete - separate vboxautostart.sh from vboxdrv.sh - add vboxautostart.service - clean up vboxdrv.sh - fix build of vboxvideo kernel module by replacing the relative drm include patch with an absolute include path (with sed) - build vboxvideo kernel module for openSUSE >= 15.0 - apply fixes_for_Leap15.1.patch conditionally only - add minimal patch fixes_for_Leap42.3.patch to build for 42.3 - fix path typo: %{_datadir}/pixmaps/virtalbox -> %{_datadir}/pixmaps/virtualbox OBS-URL: https://build.opensuse.org/request/show/706136 OBS-URL: https://build.opensuse.org/package/show/Virtualization/virtualbox?expand=0&rev=489
14 lines
1016 B
Diff
14 lines
1016 B
Diff
Index: b/src/VBox/Additions/linux/sharedfolders/regops.c
|
|
===================================================================
|
|
--- a/src/VBox/Additions/linux/sharedfolders/regops.c
|
|
+++ b/src/VBox/Additions/linux/sharedfolders/regops.c
|
|
@@ -1436,7 +1436,7 @@ DECLINLINE(int) vbsf_lock_user_pages(uin
|
|
# elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 6, 0)
|
|
ssize_t cPagesLocked = get_user_pages_unlocked(uPtrFrom, cPages, fWrite, 1 /*force*/, papPages);
|
|
# elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 4, 168) && LINUX_VERSION_CODE < KERNEL_VERSION(4, 5, 0)
|
|
- ssize_t cPagesLocked = get_user_pages_unlocked(current, current->mm, uPtrFrom, cPages, papPages,
|
|
+ ssize_t cPagesLocked = get_user_pages_unlocked(uPtrFrom, cPages, papPages,
|
|
fWrite ? FOLL_WRITE | FOLL_FORCE : FOLL_FORCE);
|
|
# elif LINUX_VERSION_CODE >= KERNEL_VERSION(4, 0, 0)
|
|
ssize_t cPagesLocked = get_user_pages_unlocked(current, current->mm, uPtrFrom, cPages, fWrite, 1 /*force*/, papPages);
|