summarylogtreecommitdiffstats
path: root/4.2-kolasa-fpu_save_init.patch
blob: 6d2e4e70c0f5cd73732998d3869cb4d610199162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
--- 15.9/common/lib/modules/fglrx/build_mod/firegl_public.c	2015-09-20 18:29:19.488890309 +0200
+++ 15.9b/common/lib/modules/fglrx/build_mod/firegl_public.c	2015-09-20 14:20:51.000000000 +0200
@@ -6505,11 +6505,15 @@
     struct task_struct *cur_task = get_current();
     preempt_disable();
     if (cur_thread->status & TS_USEDFPU)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)
+         copy_fpregs_to_fpstate(&cur_task->thread.fpu);
+#else
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)
          KCL_fpu_save_init(cur_task);
 #else
          __save_init_fpu(cur_task);
 #endif
+#endif
     else
          clts();
 
@@ -6531,11 +6535,15 @@
 #else
     if (cur_task->thread.fpu.fpregs_active)
 #endif
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0)
+         copy_fpregs_to_fpstate(&cur_task->thread.fpu);
+#else
 #if LINUX_VERSION_CODE >= KERNEL_VERSION(3,15,0)
         KCL_fpu_save_init(cur_task);
 #else
         __save_init_fpu(cur_task);
 #endif
+#endif
     else
          clts();
 #endif