summaryrefslogtreecommitdiff
path: root/sys/arch/sparc
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>1998-01-13 22:54:37 +0000
committerJason Wright <jason@cvs.openbsd.org>1998-01-13 22:54:37 +0000
commit321ee1e2d287fc2c2d69ba14cff0021db9c4a377 (patch)
tree3ebf2bccdd935da6c3b0dfe4b5c4cb2c3bfbf3e0 /sys/arch/sparc
parentf94ef704348902a68d0fda532f8d822525590525 (diff)
Workaround for fpu_cleanup panic. We just ignore it. I'm going to
look further into really fixing this problem.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r--sys/arch/sparc/fpu/fpu.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/sys/arch/sparc/fpu/fpu.c b/sys/arch/sparc/fpu/fpu.c
index 742add709d2..9c7a7dd17d6 100644
--- a/sys/arch/sparc/fpu/fpu.c
+++ b/sys/arch/sparc/fpu/fpu.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fpu.c,v 1.7 1997/08/08 08:25:46 downsj Exp $ */
+/* $OpenBSD: fpu.c,v 1.8 1998/01/13 22:54:36 jason Exp $ */
/* $NetBSD: fpu.c,v 1.6 1997/07/29 10:09:51 fair Exp $ */
/*
@@ -117,7 +117,14 @@ fpu_cleanup(p, fs)
switch ((fsr >> FSR_FTT_SHIFT) & FSR_FTT_MASK) {
case FSR_TT_NONE:
- panic("fpu_cleanup 1"); /* ??? */
+#if 0
+ /* XXX I'm not sure how we get here, but ignoring the trap */
+ /* XXX seems to work in my limited tests */
+ /* XXX More research to be done =) */
+ panic("fpu_cleanup 1"); /* ??? */
+#else
+ printf("fpu_cleanup 1\n");
+#endif
break;
case FSR_TT_IEEE: