mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
166464b5ad
uses patch from https://github.com/imageguy/fglrx-for-Fedora/blob/master/fglrx_kernel_4.9.diff
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
commit b3e4353fc68a6a024dcb95e2d61aa0afd7370233
|
|
Author: Matt McHenry <matt@mchenryfamily.org>
|
|
Date: Fri Feb 3 20:19:41 2017
|
|
|
|
patch for 4.9 only
|
|
|
|
diff --git a/common/lib/modules/fglrx/build_mod/firegl_public.c b/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
index 4ce095f..3b591e1 100755
|
|
--- a/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
+++ b/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
@@ -3224,7 +3224,7 @@ int ATI_API_CALL KCL_LockUserPages(unsigned long vaddr, unsigned long* page_list
|
|
int ret;
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
- ret = get_user_pages(vaddr, page_cnt, 1, 0, (struct page **)page_list, NULL);
|
|
+ ret = get_user_pages(vaddr, page_cnt, 1, (struct page **)page_list, NULL);
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
return ret;
|
|
@@ -3242,7 +3242,7 @@ int ATI_API_CALL KCL_LockReadOnlyUserPages(unsigned long vaddr, unsigned long* p
|
|
int ret;
|
|
|
|
down_read(¤t->mm->mmap_sem);
|
|
- ret = get_user_pages(vaddr, page_cnt, 0, 0, (struct page **)page_list, NULL);
|
|
+ ret = get_user_pages(vaddr, page_cnt, 0, (struct page **)page_list, NULL);
|
|
up_read(¤t->mm->mmap_sem);
|
|
|
|
return ret;
|