svn commit: r257675 - projects/altix2/sys/ia64/ia64
Marcel Moolenaar
marcel at FreeBSD.org
Tue Nov 5 04:51:08 UTC 2013
Author: marcel
Date: Tue Nov 5 04:51:07 2013
New Revision: 257675
URL: http://svnweb.freebsd.org/changeset/base/257675
Log:
We get a stray interrupt 54 on the Altic 450 and the problem is that
there's no way to mask interrupts. So, until I know where it comes
from or what device generates the interrupt, let's not panic...
Modified:
projects/altix2/sys/ia64/ia64/interrupt.c
Modified: projects/altix2/sys/ia64/ia64/interrupt.c
==============================================================================
--- projects/altix2/sys/ia64/ia64/interrupt.c Tue Nov 5 04:40:28 2013 (r257674)
+++ projects/altix2/sys/ia64/ia64/interrupt.c Tue Nov 5 04:51:07 2013 (r257675)
@@ -410,7 +410,7 @@ static u_int
ia64_ih_invalid(struct thread *td, u_int xiv, struct trapframe *tf)
{
- panic("invalid XIV: %u", xiv);
+ printf("invalid XIV: %u", xiv);
return (0);
}
More information about the svn-src-projects
mailing list