diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-12 08:08:55 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2008-07-12 08:08:55 +0000 |
commit | b0a9097a87d9a9961f57e12298c98aafb2a05db3 (patch) | |
tree | 44d5d8a5e8d706a4d538d557e2c405bd08a7762a /sys | |
parent | 99cc8ac00c0ff3efa9e7f5fa0d39952937d6e4b7 (diff) |
On Fujitsu's SPARC64 CPUs, the data_access_error trap is synchronous, and AFSR
will be 0. Check SFSR too, before deciding there's no fault.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc64/sparc64/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/trap.c b/sys/arch/sparc64/sparc64/trap.c index 55fc52eb12b..0a3af9cacea 100644 --- a/sys/arch/sparc64/sparc64/trap.c +++ b/sys/arch/sparc64/sparc64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.62 2008/04/07 16:21:26 thib Exp $ */ +/* $OpenBSD: trap.c,v 1.63 2008/07/12 08:08:54 kettenis Exp $ */ /* $NetBSD: trap.c,v 1.73 2001/08/09 01:03:01 eeh Exp $ */ /* @@ -986,7 +986,7 @@ data_access_error(tf, type, afva, afsr, sfva, sfsr) printf("data error type %x sfsr=%lx sfva=%lx afsr=%lx afva=%lx tf=%p\n", type, sfsr, sfva, afsr, afva, tf); - if (afsr == 0) { + if (afsr == 0 && sfsr == 0) { printf("data_access_error: no fault\n"); goto out; /* No fault. Why were we called? */ } |