Date: Tue, 5 Nov 2013 04:51:07 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r257675 - projects/altix2/sys/ia64/ia64 Message-ID: <201311050451.rA54p7Gn002736@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311050451.rA54p7Gn002736>