> I am actually using the 2.4.18 stable kernel source, although I did > check the 2.5.14 source tree I have to see if any modifications had > taken place. My problem is the in signal.c function setup_sigcontext > has: If you mean 2.4.18 from kernel.org, it's missing a lot of MIPS fixes, I'm sorry to say. Most of them went in at 2.4.19-pre2 or so. > if (current->used_math) { /* fp is active. */ > set_cp0_status(ST0_CU1); > err |= save_fp_context(sc); > last_task_used_math = NULL; > regs->cp0_status &= ~ST0_CU1; > current->used_math = 0; > } > > There is no check to see if I have an FPU. I modified it to: > > if (current->used_math) { /* fp is active. */ > if (mips_cpu.options & MIPS_CPU_FPU) { > set_cp0_status(ST0_CU1); > err |= save_fp_context(sc); > regs->cp0_status &= ~ST0_CU1; > } > last_task_used_math = NULL; > current->used_math = 0; > } This is a known (and old) problem, with a fix that somehow didn't get distributed widely enough. There are probably related problems in the sources you are using that will likewise cause random core dumps when the FP is used on a loaded system. The 2.4.x branch of the sources at http://oss.sgi.com/mips/ should have the full set of fixes. > And now I am not crashing. As far as how it is supposed to be setup, I > don't really know - like I said, I'm pretty new at this. I don't see any > ifdefs/checks around the code in traps.c > > case CPU_R2000: > case CPU_R3000: > case CPU_R3000A: > case CPU_R3041: > case CPU_R3051: > case CPU_R3052: > case CPU_R3081: > case CPU_R3081E: > case CPU_TX3912: > case CPU_TX3922: > case CPU_TX3927: > save_fp_context = _save_fp_context; > restore_fp_context = _restore_fp_context; The following lines in my copy of the file are: memcpy((void *)(KSEG0 + 0x80), &except_vec3_generic, 0x80); break; case CPU_UNKNOWN: default: panic("Unknown CPU type"); } if (!(mips_cpu.options & MIPS_CPU_FPU)) { save_fp_context = fpu_emulator_save_context; restore_fp_context = fpu_emulator_restore_context; } This should overwrite the fp_context save/restore pointers with those of the emulator. If that clause doesn't appear in your traps.c file, please try putting it in. Regards, Kevin K.