Date: Thu, 29 Jan 2004 09:06:50 -0800 (PST) From: John Baldwin <jhb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 46137 for review Message-ID: <200401291706.i0TH6o1l042518@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=46137 Change 46137 by jhb@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",
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401291706.i0TH6o1l042518>