svn commit: r199269 - head/sys/i386/cpufreq

Alexander Motin mav at FreeBSD.org
Sat Nov 14 14:29:18 UTC 2009


Author: mav
Date: Sat Nov 14 14:29:18 2009
New Revision: 199269
URL: http://svn.freebsd.org/changeset/base/199269

Log:
  Retry only once, if BIOS is completely broken and gives zero freqs.

Modified:
  head/sys/i386/cpufreq/est.c

Modified: head/sys/i386/cpufreq/est.c
==============================================================================
--- head/sys/i386/cpufreq/est.c	Sat Nov 14 14:16:02 2009	(r199268)
+++ head/sys/i386/cpufreq/est.c	Sat Nov 14 14:29:18 2009	(r199269)
@@ -1133,7 +1133,7 @@ restart:
 			}
 		}
 	}
-	if (count >= 2 && j < 2) {
+	if (check && count >= 2 && j < 2) {
 		if (bootverbose) {
 			device_printf(dev, "Too much freqs ignored. "
 			    "May be a check problem. Restore all.\n");


More information about the svn-src-all mailing list