Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Nov 2009 14:29:18 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r199269 - head/sys/i386/cpufreq
Message-ID:  <200911141429.nAEETI5w001277@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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");



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200911141429.nAEETI5w001277>