svn commit: r221225 - projects/altix/sys/ia64/ia64

Marcel Moolenaar marcel at FreeBSD.org
Fri Apr 29 21:02:48 UTC 2011


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];


More information about the svn-src-projects mailing list