Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 29 Apr 2011 21:02:47 +0000 (UTC)
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r221225 - projects/altix/sys/ia64/ia64
Message-ID:  <201104292102.p3TL2lKr015417@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marcel
Date: Fri Apr 29 21:02:47 2011
New Revision: 221225
URL: http://svn.freebsd.org/changeset/base/221225

Log:
  Put debug printf under bootverbose.

Modified:
  projects/altix/sys/ia64/ia64/interrupt.c

Modified: projects/altix/sys/ia64/ia64/interrupt.c
==============================================================================
--- projects/altix/sys/ia64/ia64/interrupt.c	Fri Apr 29 20:55:15 2011	(r221224)
+++ projects/altix/sys/ia64/ia64/interrupt.c	Fri Apr 29 21:02:47 2011	(r221225)
@@ -423,7 +423,9 @@ ia64_ih_irq(struct thread *td, u_int xiv
 
 	PCPU_INC(md.stats.pcs_nhwints);
 
-	printf("INTR: ITC=%u, XIV=%u\n", (u_int)tf->tf_special.ifa, xiv);
+	if (bootverbose)
+		printf("INTR: ITC=%u, XIV=%u\n", (u_int)tf->tf_special.ifa,
+		    xiv);
 
 	/* Find the interrupt thread for this XIV. */
 	i = ia64_intrs[xiv];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104292102.p3TL2lKr015417>