]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
MIPS: Don't require FPU on sigcontext setup/restore
authorPaul Burton <paul.burton@imgtec.com>
Mon, 27 Jan 2014 15:23:03 +0000 (15:23 +0000)
committerRalf Baechle <ralf@linux-mips.org>
Wed, 26 Mar 2014 22:09:09 +0000 (23:09 +0100)
When a task which has used the FPU at some point in its past takes a
signal the kernel would previously always require the task to take
ownership of the FPU whilst setting up or restoring from the sigcontext.
That means that if the task has not used the FPU within this timeslice
then the kernel would enable the FPU, restore the task's FP context into
FPU registers and then save them into the sigcontext. This seems
inefficient, and if the signal handler doesn't use FP then enabling the
FPU & the extra memory accesses are entirely wasted work.

This patch modifies the sigcontext setup & restore code to copy directly
between the tasks saved FP context & the sigcontext for any tasks which
have used FP in the past but are not currently the FPU owner (ie. have
not used FP in this timeslice).

Signed-off-by: Paul Burton <paul.burton@imgtec.com>
Reviewed-by: Qais Yousef <qais.yousef@imgtec.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/6423/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/mips/kernel/signal.c
arch/mips/kernel/signal32.c

index b7e4614d41b574161bd84779b7120edc39c77d91..e0178e117f684917cf5a2b96b1d82ffbff24ee89 100644 (file)
@@ -102,10 +102,13 @@ static int protected_save_fp_context(struct sigcontext __user *sc)
        int err;
        while (1) {
                lock_fpu_owner();
-               err = own_fpu_inatomic(1);
-               if (!err)
-                       err = save_fp_context(sc); /* this might fail */
-               unlock_fpu_owner();
+               if (is_fpu_owner()) {
+                       err = save_fp_context(sc);
+                       unlock_fpu_owner();
+               } else {
+                       unlock_fpu_owner();
+                       err = copy_fp_to_sigcontext(sc);
+               }
                if (likely(!err))
                        break;
                /* touch the sigcontext and try again */
@@ -123,10 +126,13 @@ static int protected_restore_fp_context(struct sigcontext __user *sc)
        int err, tmp __maybe_unused;
        while (1) {
                lock_fpu_owner();
-               err = own_fpu_inatomic(0);
-               if (!err)
-                       err = restore_fp_context(sc); /* this might fail */
-               unlock_fpu_owner();
+               if (is_fpu_owner()) {
+                       err = restore_fp_context(sc);
+                       unlock_fpu_owner();
+               } else {
+                       unlock_fpu_owner();
+                       err = copy_fp_from_sigcontext(sc);
+               }
                if (likely(!err))
                        break;
                /* touch the sigcontext and try again */
index dc09206d8c7bf7675825319f99fb1b29cfeed197..aec58211faaa0cff3d5c685d7f0459c8a32c58ad 100644 (file)
@@ -118,10 +118,13 @@ static int protected_save_fp_context32(struct sigcontext32 __user *sc)
        int err;
        while (1) {
                lock_fpu_owner();
-               err = own_fpu_inatomic(1);
-               if (!err)
-                       err = save_fp_context32(sc); /* this might fail */
-               unlock_fpu_owner();
+               if (is_fpu_owner()) {
+                       err = save_fp_context32(sc);
+                       unlock_fpu_owner();
+               } else {
+                       unlock_fpu_owner();
+                       err = copy_fp_to_sigcontext32(sc);
+               }
                if (likely(!err))
                        break;
                /* touch the sigcontext and try again */
@@ -139,10 +142,13 @@ static int protected_restore_fp_context32(struct sigcontext32 __user *sc)
        int err, tmp __maybe_unused;
        while (1) {
                lock_fpu_owner();
-               err = own_fpu_inatomic(0);
-               if (!err)
-                       err = restore_fp_context32(sc); /* this might fail */
-               unlock_fpu_owner();
+               if (is_fpu_owner()) {
+                       err = restore_fp_context32(sc);
+                       unlock_fpu_owner();
+               } else {
+                       unlock_fpu_owner();
+                       err = copy_fp_from_sigcontext32(sc);
+               }
                if (likely(!err))
                        break;
                /* touch the sigcontext and try again */