svn commit: r212798 - head/sys/kern

Warner Losh imp at FreeBSD.org
Fri Sep 17 16:05:26 UTC 2010


Author: imp
Date: Fri Sep 17 16:05:25 2010
New Revision: 212798
URL: http://svn.freebsd.org/changeset/base/212798

Log:
  By popular demand, kill all the non GIANT related interrupt messages.
  They are confusing and add little value.
  
  Reviewed by:	jhb@

Modified:
  head/sys/kern/subr_bus.c

Modified: head/sys/kern/subr_bus.c
==============================================================================
--- head/sys/kern/subr_bus.c	Fri Sep 17 15:58:05 2010	(r212797)
+++ head/sys/kern/subr_bus.c	Fri Sep 17 16:05:25 2010	(r212798)
@@ -3998,15 +3998,6 @@ bus_setup_intr(device_t dev, struct reso
 		return (error);
 	if (handler != NULL && !(flags & INTR_MPSAFE))
 		device_printf(dev, "[GIANT-LOCKED]\n");
-	if (bootverbose && (flags & INTR_MPSAFE))
-		device_printf(dev, "[MPSAFE]\n");
-	if (filter != NULL) {
-		if (handler == NULL)
-			device_printf(dev, "[FILTER]\n");
-		else 
-			device_printf(dev, "[FILTER+ITHREAD]\n");
-	} else 
-		device_printf(dev, "[ITHREAD]\n");
 	return (0);
 }
 


More information about the svn-src-all mailing list