PERFORCE change 46137 for review

John Baldwin jhb at FreeBSD.org
Thu Jan 29 09:06:52 PST 2004


http://perforce.freebsd.org/chv.cgi?CH=46137

Change 46137 by jhb at jhb_slimer on 2004/01/29 09:06:47

	Threshold of 0 disables throttling.

Affected files ...

.. //depot/projects/smpng/sys/kern/kern_intr.c#41 edit

Differences ...

==== //depot/projects/smpng/sys/kern/kern_intr.c#41 (text+ko) ====

@@ -536,7 +536,7 @@
 			 * If we detect an interrupt storm, pause with the source masked
 			 * for 1/10th of a second.
 			 */
-			if (count >= intr_storm_threshold) {
+			if (intr_storm_threshold != 0 && count >= intr_storm_threshold) {
 				if (!warned) {
 					printf(
 			"Interrupt storm detected on \"%s\", throttling interrupt source\n",


More information about the p4-projects mailing list