2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1991, 1992 Linus Torvalds
7 * Copyright (C) 1994 - 2000 Ralf Baechle
8 * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
9 * Copyright (C) 2014, Imagination Technologies Ltd.
11 #include <linux/cache.h>
12 #include <linux/context_tracking.h>
13 #include <linux/irqflags.h>
14 #include <linux/sched.h>
16 #include <linux/personality.h>
17 #include <linux/smp.h>
18 #include <linux/kernel.h>
19 #include <linux/signal.h>
20 #include <linux/errno.h>
21 #include <linux/wait.h>
22 #include <linux/ptrace.h>
23 #include <linux/unistd.h>
24 #include <linux/uprobes.h>
25 #include <linux/compiler.h>
26 #include <linux/syscalls.h>
27 #include <linux/uaccess.h>
28 #include <linux/resume_user_mode.h>
32 #include <linux/bitops.h>
33 #include <asm/cacheflush.h>
36 #include <asm/ucontext.h>
37 #include <asm/cpu-features.h>
42 #include "signal-common.h"
44 static int (*save_fp_context)(void __user *sc);
45 static int (*restore_fp_context)(void __user *sc);
48 u32 sf_ass[4]; /* argument save space for o32 */
49 u32 sf_pad[2]; /* Was: signal trampoline */
51 /* Matches struct ucontext from its uc_mcontext field onwards */
52 struct sigcontext sf_sc;
54 unsigned long long sf_extcontext[];
58 u32 rs_ass[4]; /* argument save space for o32 */
59 u32 rs_pad[2]; /* Was: signal trampoline */
60 struct siginfo rs_info;
61 struct ucontext rs_uc;
64 #ifdef CONFIG_MIPS_FP_SUPPORT
67 * Thread saved context copy to/from a signal context presumed to be on the
68 * user stack, and therefore accessed with appropriate macros from uaccess.h.
70 static int copy_fp_to_sigcontext(void __user *sc)
72 struct mips_abi *abi = current->thread.abi;
73 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
74 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
77 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1;
79 for (i = 0; i < NUM_FPU_REGS; i += inc) {
81 __put_user(get_fpr64(¤t->thread.fpu.fpr[i], 0),
84 err |= __put_user(current->thread.fpu.fcr31, csr);
89 static int copy_fp_from_sigcontext(void __user *sc)
91 struct mips_abi *abi = current->thread.abi;
92 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
93 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
96 int inc = test_thread_flag(TIF_32BIT_FPREGS) ? 2 : 1;
99 for (i = 0; i < NUM_FPU_REGS; i += inc) {
100 err |= __get_user(fpr_val, &fpregs[i]);
101 set_fpr64(¤t->thread.fpu.fpr[i], 0, fpr_val);
103 err |= __get_user(current->thread.fpu.fcr31, csr);
108 #else /* !CONFIG_MIPS_FP_SUPPORT */
110 static int copy_fp_to_sigcontext(void __user *sc)
115 static int copy_fp_from_sigcontext(void __user *sc)
120 #endif /* !CONFIG_MIPS_FP_SUPPORT */
123 * Wrappers for the assembly _{save,restore}_fp_context functions.
125 static int save_hw_fp_context(void __user *sc)
127 struct mips_abi *abi = current->thread.abi;
128 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
129 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
131 return _save_fp_context(fpregs, csr);
134 static int restore_hw_fp_context(void __user *sc)
136 struct mips_abi *abi = current->thread.abi;
137 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
138 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
140 return _restore_fp_context(fpregs, csr);
144 * Extended context handling.
147 static inline void __user *sc_to_extcontext(void __user *sc)
149 struct ucontext __user *uc;
152 * We can just pretend the sigcontext is always embedded in a struct
153 * ucontext here, because the offset from sigcontext to extended
154 * context is the same in the struct sigframe case.
156 uc = container_of(sc, struct ucontext, uc_mcontext);
157 return &uc->uc_extcontext;
160 #ifdef CONFIG_CPU_HAS_MSA
162 static int save_msa_extcontext(void __user *buf)
164 struct msa_extcontext __user *msa = buf;
168 if (!thread_msa_context_live())
172 * Ensure that we can't lose the live MSA context between checking
173 * for it & writing it to memory.
177 if (is_msa_enabled()) {
179 * There are no EVA versions of the vector register load/store
180 * instructions, so MSA context has to be saved to kernel memory
181 * and then copied to user memory. The save to kernel memory
182 * should already have been done when handling scalar FP
185 BUG_ON(IS_ENABLED(CONFIG_EVA));
187 err = __put_user(read_msa_csr(), &msa->csr);
188 err |= _save_msa_all_upper(&msa->wr);
194 err = __put_user(current->thread.fpu.msacsr, &msa->csr);
196 for (i = 0; i < NUM_FPU_REGS; i++) {
197 val = get_fpr64(¤t->thread.fpu.fpr[i], 1);
198 err |= __put_user(val, &msa->wr[i]);
202 err |= __put_user(MSA_EXTCONTEXT_MAGIC, &msa->ext.magic);
203 err |= __put_user(sizeof(*msa), &msa->ext.size);
205 return err ? -EFAULT : sizeof(*msa);
208 static int restore_msa_extcontext(void __user *buf, unsigned int size)
210 struct msa_extcontext __user *msa = buf;
211 unsigned long long val;
215 if (size != sizeof(*msa))
218 err = get_user(csr, &msa->csr);
224 if (is_msa_enabled()) {
226 * There are no EVA versions of the vector register load/store
227 * instructions, so MSA context has to be copied to kernel
228 * memory and later loaded to registers. The same is true of
229 * scalar FP context, so FPU & MSA should have already been
230 * disabled whilst handling scalar FP context.
232 BUG_ON(IS_ENABLED(CONFIG_EVA));
235 err |= _restore_msa_all_upper(&msa->wr);
240 current->thread.fpu.msacsr = csr;
242 for (i = 0; i < NUM_FPU_REGS; i++) {
243 err |= __get_user(val, &msa->wr[i]);
244 set_fpr64(¤t->thread.fpu.fpr[i], 1, val);
251 #else /* !CONFIG_CPU_HAS_MSA */
253 static int save_msa_extcontext(void __user *buf)
258 static int restore_msa_extcontext(void __user *buf, unsigned int size)
263 #endif /* !CONFIG_CPU_HAS_MSA */
265 static int save_extcontext(void __user *buf)
269 sz = save_msa_extcontext(buf);
274 /* If no context was saved then trivially return */
278 /* Write the end marker */
279 if (__put_user(END_EXTCONTEXT_MAGIC, (u32 *)buf))
282 sz += sizeof(((struct extcontext *)NULL)->magic);
286 static int restore_extcontext(void __user *buf)
288 struct extcontext ext;
292 err = __get_user(ext.magic, (unsigned int *)buf);
296 if (ext.magic == END_EXTCONTEXT_MAGIC)
299 err = __get_user(ext.size, (unsigned int *)(buf
300 + offsetof(struct extcontext, size)));
305 case MSA_EXTCONTEXT_MAGIC:
306 err = restore_msa_extcontext(buf, ext.size);
324 int protected_save_fp_context(void __user *sc)
326 struct mips_abi *abi = current->thread.abi;
327 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
328 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
329 uint32_t __user *used_math = sc + abi->off_sc_used_math;
330 unsigned int used, ext_sz;
333 used = used_math() ? USED_FP : 0;
337 if (!test_thread_flag(TIF_32BIT_FPREGS))
339 if (test_thread_flag(TIF_HYBRID_FPREGS))
340 used |= USED_HYBRID_FPRS;
343 * EVA does not have userland equivalents of ldc1 or sdc1, so
344 * save to the kernel FP context & copy that to userland below.
346 if (IS_ENABLED(CONFIG_EVA))
351 if (is_fpu_owner()) {
352 err = save_fp_context(sc);
356 err = copy_fp_to_sigcontext(sc);
360 /* touch the sigcontext and try again */
361 err = __put_user(0, &fpregs[0]) |
362 __put_user(0, &fpregs[31]) |
365 return err; /* really bad sigcontext */
369 ext_sz = err = save_extcontext(sc_to_extcontext(sc));
372 used |= ext_sz ? USED_EXTCONTEXT : 0;
374 return __put_user(used, used_math);
377 int protected_restore_fp_context(void __user *sc)
379 struct mips_abi *abi = current->thread.abi;
380 uint64_t __user *fpregs = sc + abi->off_sc_fpregs;
381 uint32_t __user *csr = sc + abi->off_sc_fpc_csr;
382 uint32_t __user *used_math = sc + abi->off_sc_used_math;
384 int err, sig = 0, tmp __maybe_unused;
386 err = __get_user(used, used_math);
387 conditional_used_math(used & USED_FP);
390 * The signal handler may have used FPU; give it up if the program
391 * doesn't want it following sigreturn.
393 if (err || !(used & USED_FP))
397 if (!(used & USED_FP))
400 err = sig = fpcsr_pending(csr);
405 * EVA does not have userland equivalents of ldc1 or sdc1, so we
406 * disable the FPU here such that the code below simply copies to
407 * the kernel FP context.
409 if (IS_ENABLED(CONFIG_EVA))
414 if (is_fpu_owner()) {
415 err = restore_fp_context(sc);
419 err = copy_fp_from_sigcontext(sc);
423 /* touch the sigcontext and try again */
424 err = __get_user(tmp, &fpregs[0]) |
425 __get_user(tmp, &fpregs[31]) |
426 __get_user(tmp, csr);
428 break; /* really bad sigcontext */
432 if (!err && (used & USED_EXTCONTEXT))
433 err = restore_extcontext(sc_to_extcontext(sc));
438 int setup_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
443 err |= __put_user(regs->cp0_epc, &sc->sc_pc);
445 err |= __put_user(0, &sc->sc_regs[0]);
446 for (i = 1; i < 32; i++)
447 err |= __put_user(regs->regs[i], &sc->sc_regs[i]);
449 #ifdef CONFIG_CPU_HAS_SMARTMIPS
450 err |= __put_user(regs->acx, &sc->sc_acx);
452 err |= __put_user(regs->hi, &sc->sc_mdhi);
453 err |= __put_user(regs->lo, &sc->sc_mdlo);
455 err |= __put_user(mfhi1(), &sc->sc_hi1);
456 err |= __put_user(mflo1(), &sc->sc_lo1);
457 err |= __put_user(mfhi2(), &sc->sc_hi2);
458 err |= __put_user(mflo2(), &sc->sc_lo2);
459 err |= __put_user(mfhi3(), &sc->sc_hi3);
460 err |= __put_user(mflo3(), &sc->sc_lo3);
461 err |= __put_user(rddsp(DSP_MASK), &sc->sc_dsp);
466 * Save FPU state to signal context. Signal handler
467 * will "inherit" current FPU state.
469 err |= protected_save_fp_context(sc);
474 static size_t extcontext_max_size(void)
479 * The assumption here is that between this point & the point at which
480 * the extended context is saved the size of the context should only
481 * ever be able to shrink (if the task is preempted), but never grow.
482 * That is, what this function returns is an upper bound on the size of
483 * the extended context for the current task at the current time.
486 if (thread_msa_context_live())
487 sz += sizeof(struct msa_extcontext);
489 /* If any context is saved then we'll append the end marker */
491 sz += sizeof(((struct extcontext *)NULL)->magic);
496 int fpcsr_pending(unsigned int __user *fpcsr)
499 unsigned int csr, enabled;
501 err = __get_user(csr, fpcsr);
502 enabled = FPU_CSR_UNI_X | ((csr & FPU_CSR_ALL_E) << 5);
504 * If the signal handler set some FPU exceptions, clear it and
509 err |= __put_user(csr, fpcsr);
515 int restore_sigcontext(struct pt_regs *regs, struct sigcontext __user *sc)
521 /* Always make any pending restarted system calls return -EINTR */
522 current->restart_block.fn = do_no_restart_syscall;
524 err |= __get_user(regs->cp0_epc, &sc->sc_pc);
526 #ifdef CONFIG_CPU_HAS_SMARTMIPS
527 err |= __get_user(regs->acx, &sc->sc_acx);
529 err |= __get_user(regs->hi, &sc->sc_mdhi);
530 err |= __get_user(regs->lo, &sc->sc_mdlo);
532 err |= __get_user(treg, &sc->sc_hi1); mthi1(treg);
533 err |= __get_user(treg, &sc->sc_lo1); mtlo1(treg);
534 err |= __get_user(treg, &sc->sc_hi2); mthi2(treg);
535 err |= __get_user(treg, &sc->sc_lo2); mtlo2(treg);
536 err |= __get_user(treg, &sc->sc_hi3); mthi3(treg);
537 err |= __get_user(treg, &sc->sc_lo3); mtlo3(treg);
538 err |= __get_user(treg, &sc->sc_dsp); wrdsp(treg, DSP_MASK);
541 for (i = 1; i < 32; i++)
542 err |= __get_user(regs->regs[i], &sc->sc_regs[i]);
544 return err ?: protected_restore_fp_context(sc);
547 #ifdef CONFIG_WAR_ICACHE_REFILLS
548 #define SIGMASK ~(cpu_icache_line_size()-1)
550 #define SIGMASK ALMASK
553 void __user *get_sigframe(struct ksignal *ksig, struct pt_regs *regs,
558 /* Leave space for potential extended context */
559 frame_size += extcontext_max_size();
561 /* Default to using normal stack */
565 * If we are on the alternate signal stack and would overflow it, don't.
566 * Return an always-bogus address instead so we will die with SIGSEGV.
568 if (on_sig_stack(sp) && !likely(on_sig_stack(sp - frame_size)))
569 return (void __user __force *)(-1UL);
572 * FPU emulator may have it's own trampoline active just
573 * above the user stack, 16-bytes before the next lowest
574 * 16 byte boundary. Try to avoid trashing it.
578 sp = sigsp(sp, ksig);
580 return (void __user *)((sp - frame_size) & SIGMASK);
584 * Atomically swap in the new signal mask, and wait for a signal.
587 #ifdef CONFIG_TRAD_SIGNALS
588 SYSCALL_DEFINE1(sigsuspend, sigset_t __user *, uset)
590 return sys_rt_sigsuspend(uset, sizeof(sigset_t));
594 #ifdef CONFIG_TRAD_SIGNALS
595 SYSCALL_DEFINE3(sigaction, int, sig, const struct sigaction __user *, act,
596 struct sigaction __user *, oact)
598 struct k_sigaction new_ka, old_ka;
605 if (!access_ok(act, sizeof(*act)))
607 err |= __get_user(new_ka.sa.sa_handler, &act->sa_handler);
608 err |= __get_user(new_ka.sa.sa_flags, &act->sa_flags);
609 err |= __get_user(mask, &act->sa_mask.sig[0]);
613 siginitset(&new_ka.sa.sa_mask, mask);
616 ret = do_sigaction(sig, act ? &new_ka : NULL, oact ? &old_ka : NULL);
619 if (!access_ok(oact, sizeof(*oact)))
621 err |= __put_user(old_ka.sa.sa_flags, &oact->sa_flags);
622 err |= __put_user(old_ka.sa.sa_handler, &oact->sa_handler);
623 err |= __put_user(old_ka.sa.sa_mask.sig[0], oact->sa_mask.sig);
624 err |= __put_user(0, &oact->sa_mask.sig[1]);
625 err |= __put_user(0, &oact->sa_mask.sig[2]);
626 err |= __put_user(0, &oact->sa_mask.sig[3]);
635 #ifdef CONFIG_TRAD_SIGNALS
636 asmlinkage void sys_sigreturn(void)
638 struct sigframe __user *frame;
639 struct pt_regs *regs;
643 regs = current_pt_regs();
644 frame = (struct sigframe __user *)regs->regs[29];
645 if (!access_ok(frame, sizeof(*frame)))
647 if (__copy_from_user(&blocked, &frame->sf_mask, sizeof(blocked)))
650 set_current_blocked(&blocked);
652 sig = restore_sigcontext(regs, &frame->sf_sc);
659 * Don't let your children do this ...
661 __asm__ __volatile__(
671 #endif /* CONFIG_TRAD_SIGNALS */
673 asmlinkage void sys_rt_sigreturn(void)
675 struct rt_sigframe __user *frame;
676 struct pt_regs *regs;
680 regs = current_pt_regs();
681 frame = (struct rt_sigframe __user *)regs->regs[29];
682 if (!access_ok(frame, sizeof(*frame)))
684 if (__copy_from_user(&set, &frame->rs_uc.uc_sigmask, sizeof(set)))
687 set_current_blocked(&set);
689 sig = restore_sigcontext(regs, &frame->rs_uc.uc_mcontext);
695 if (restore_altstack(&frame->rs_uc.uc_stack))
699 * Don't let your children do this ...
701 __asm__ __volatile__(
712 #ifdef CONFIG_TRAD_SIGNALS
713 static int setup_frame(void *sig_return, struct ksignal *ksig,
714 struct pt_regs *regs, sigset_t *set)
716 struct sigframe __user *frame;
719 frame = get_sigframe(ksig, regs, sizeof(*frame));
720 if (!access_ok(frame, sizeof (*frame)))
723 err |= setup_sigcontext(regs, &frame->sf_sc);
724 err |= __copy_to_user(&frame->sf_mask, set, sizeof(*set));
729 * Arguments to signal handler:
732 * a1 = 0 (should be cause)
733 * a2 = pointer to struct sigcontext
735 * $25 and c0_epc point to the signal handler, $29 points to the
738 regs->regs[ 4] = ksig->sig;
740 regs->regs[ 6] = (unsigned long) &frame->sf_sc;
741 regs->regs[29] = (unsigned long) frame;
742 regs->regs[31] = (unsigned long) sig_return;
743 regs->cp0_epc = regs->regs[25] = (unsigned long) ksig->ka.sa.sa_handler;
745 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
746 current->comm, current->pid,
747 frame, regs->cp0_epc, regs->regs[31]);
752 static int setup_rt_frame(void *sig_return, struct ksignal *ksig,
753 struct pt_regs *regs, sigset_t *set)
755 struct rt_sigframe __user *frame;
757 frame = get_sigframe(ksig, regs, sizeof(*frame));
758 if (!access_ok(frame, sizeof (*frame)))
761 /* Create siginfo. */
762 if (copy_siginfo_to_user(&frame->rs_info, &ksig->info))
765 /* Create the ucontext. */
766 if (__put_user(0, &frame->rs_uc.uc_flags))
768 if (__put_user(NULL, &frame->rs_uc.uc_link))
770 if (__save_altstack(&frame->rs_uc.uc_stack, regs->regs[29]))
772 if (setup_sigcontext(regs, &frame->rs_uc.uc_mcontext))
774 if (__copy_to_user(&frame->rs_uc.uc_sigmask, set, sizeof(*set)))
778 * Arguments to signal handler:
781 * a1 = 0 (should be cause)
782 * a2 = pointer to ucontext
784 * $25 and c0_epc point to the signal handler, $29 points to
785 * the struct rt_sigframe.
787 regs->regs[ 4] = ksig->sig;
788 regs->regs[ 5] = (unsigned long) &frame->rs_info;
789 regs->regs[ 6] = (unsigned long) &frame->rs_uc;
790 regs->regs[29] = (unsigned long) frame;
791 regs->regs[31] = (unsigned long) sig_return;
792 regs->cp0_epc = regs->regs[25] = (unsigned long) ksig->ka.sa.sa_handler;
794 DEBUGP("SIG deliver (%s:%d): sp=0x%p pc=0x%lx ra=0x%lx\n",
795 current->comm, current->pid,
796 frame, regs->cp0_epc, regs->regs[31]);
801 struct mips_abi mips_abi = {
802 #ifdef CONFIG_TRAD_SIGNALS
803 .setup_frame = setup_frame,
805 .setup_rt_frame = setup_rt_frame,
806 .restart = __NR_restart_syscall,
808 .off_sc_fpregs = offsetof(struct sigcontext, sc_fpregs),
809 .off_sc_fpc_csr = offsetof(struct sigcontext, sc_fpc_csr),
810 .off_sc_used_math = offsetof(struct sigcontext, sc_used_math),
815 static void handle_signal(struct ksignal *ksig, struct pt_regs *regs)
817 sigset_t *oldset = sigmask_to_save();
819 struct mips_abi *abi = current->thread.abi;
820 void *vdso = current->mm->context.vdso;
823 * If we were emulating a delay slot instruction, exit that frame such
824 * that addresses in the sigframe are as expected for userland and we
825 * don't have a problem if we reuse the thread's frame for an
826 * instruction within the signal handler.
828 dsemul_thread_rollback(regs);
831 switch(regs->regs[2]) {
832 case ERESTART_RESTARTBLOCK:
834 regs->regs[2] = EINTR;
837 if (!(ksig->ka.sa.sa_flags & SA_RESTART)) {
838 regs->regs[2] = EINTR;
843 regs->regs[7] = regs->regs[26];
844 regs->regs[2] = regs->regs[0];
848 regs->regs[0] = 0; /* Don't deal with this again. */
851 rseq_signal_deliver(ksig, regs);
853 if (sig_uses_siginfo(&ksig->ka, abi))
854 ret = abi->setup_rt_frame(vdso + abi->vdso->off_rt_sigreturn,
857 ret = abi->setup_frame(vdso + abi->vdso->off_sigreturn,
860 signal_setup_done(ret, ksig, 0);
863 static void do_signal(struct pt_regs *regs)
867 if (get_signal(&ksig)) {
868 /* Whee! Actually deliver the signal. */
869 handle_signal(&ksig, regs);
874 switch (regs->regs[2]) {
878 regs->regs[2] = regs->regs[0];
879 regs->regs[7] = regs->regs[26];
883 case ERESTART_RESTARTBLOCK:
884 regs->regs[2] = current->thread.abi->restart;
885 regs->regs[7] = regs->regs[26];
889 regs->regs[0] = 0; /* Don't deal with this again. */
893 * If there's no signal to deliver, we just put the saved sigmask
896 restore_saved_sigmask();
900 * notification of userspace execution resumption
901 * - triggered by the TIF_WORK_MASK flags
903 asmlinkage void do_notify_resume(struct pt_regs *regs, void *unused,
904 __u32 thread_info_flags)
910 if (thread_info_flags & _TIF_UPROBE)
911 uprobe_notify_resume(regs);
913 /* deal with pending signal delivery */
914 if (thread_info_flags & (_TIF_SIGPENDING | _TIF_NOTIFY_SIGNAL))
917 if (thread_info_flags & _TIF_NOTIFY_RESUME)
918 resume_user_mode_work(regs);
923 #if defined(CONFIG_SMP) && defined(CONFIG_MIPS_FP_SUPPORT)
924 static int smp_save_fp_context(void __user *sc)
926 return raw_cpu_has_fpu
927 ? save_hw_fp_context(sc)
928 : copy_fp_to_sigcontext(sc);
931 static int smp_restore_fp_context(void __user *sc)
933 return raw_cpu_has_fpu
934 ? restore_hw_fp_context(sc)
935 : copy_fp_from_sigcontext(sc);
939 static int signal_setup(void)
942 * The offset from sigcontext to extended context should be the same
943 * regardless of the type of signal, such that userland can always know
944 * where to look if it wishes to find the extended context structures.
946 BUILD_BUG_ON((offsetof(struct sigframe, sf_extcontext) -
947 offsetof(struct sigframe, sf_sc)) !=
948 (offsetof(struct rt_sigframe, rs_uc.uc_extcontext) -
949 offsetof(struct rt_sigframe, rs_uc.uc_mcontext)));
951 #if defined(CONFIG_SMP) && defined(CONFIG_MIPS_FP_SUPPORT)
952 /* For now just do the cpu_has_fpu check when the functions are invoked */
953 save_fp_context = smp_save_fp_context;
954 restore_fp_context = smp_restore_fp_context;
957 save_fp_context = save_hw_fp_context;
958 restore_fp_context = restore_hw_fp_context;
960 save_fp_context = copy_fp_to_sigcontext;
961 restore_fp_context = copy_fp_from_sigcontext;
963 #endif /* CONFIG_SMP */
968 arch_initcall(signal_setup);