From owner-svn-src-projects@FreeBSD.ORG Tue Nov 5 04:51:08 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0B2A886B; Tue, 5 Nov 2013 04:51:08 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EDC642B36; Tue, 5 Nov 2013 04:51:07 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA54p7CF002737; Tue, 5 Nov 2013 04:51:07 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA54p7Gn002736; Tue, 5 Nov 2013 04:51:07 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201311050451.rA54p7Gn002736@svn.freebsd.org> From: Marcel Moolenaar Date: Tue, 5 Nov 2013 04:51:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r257675 - projects/altix2/sys/ia64/ia64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Nov 2013 04:51:08 -0000 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); }