mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
7bc91ffe41
this uses the patch from https://github.com/manjaro/packages-extra/commit/ddae91f2 to account for https://github.com/torvalds/linux/commit/d4edcf0d and the patch from https://www.virtualbox.org/ticket/15298 to account for https://github.com/torvalds/linux/commit/09cbfeaf
17 lines
551 B
Diff
17 lines
551 B
Diff
diff --git a/common/lib/modules/fglrx/build_mod/firegl_public.c b/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
index b2242af..586129c 100755
|
|
--- a/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
+++ b/common/lib/modules/fglrx/build_mod/firegl_public.c
|
|
@@ -3249,7 +3249,7 @@ void ATI_API_CALL KCL_UnlockUserPages(unsigned long* page_list, unsigned int pag
|
|
unsigned int i;
|
|
for (i=0; i<page_cnt; i++)
|
|
{
|
|
- page_cache_release((struct page*)page_list[i]);
|
|
+ put_page((struct page*)page_list[i]);
|
|
}
|
|
}
|
|
|
|
--
|
|
2.9.2
|
|
|