summaryrefslogtreecommitdiffstats
path: root/sys/amd64
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1997-09-04 15:23:33 +0000
committerdg <dg@FreeBSD.org>1997-09-04 15:23:33 +0000
commita334d7c623282639c708cd1c168f694eeb134ab7 (patch)
tree4e6381de2276c096b3dc130fc84c2eae1f4bf22e /sys/amd64
parent264ffbc6e5a57ec000af5d974cfc20e5fd9948eb (diff)
downloadFreeBSD-src-a334d7c623282639c708cd1c168f694eeb134ab7.zip
FreeBSD-src-a334d7c623282639c708cd1c168f694eeb134ab7.tar.gz
Cosmetic change to last commit: speculative_mtest -> speculative_mprobe.
Diffstat (limited to 'sys/amd64')
-rw-r--r--sys/amd64/amd64/machdep.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/amd64/amd64/machdep.c b/sys/amd64/amd64/machdep.c
index 8172e72..50916d5 100644
--- a/sys/amd64/amd64/machdep.c
+++ b/sys/amd64/amd64/machdep.c
@@ -35,7 +35,7 @@
* SUCH DAMAGE.
*
* from: @(#)machdep.c 7.4 (Berkeley) 6/3/91
- * $Id: machdep.c,v 1.261 1997/09/02 20:05:28 bde Exp $
+ * $Id: machdep.c,v 1.262 1997/09/04 15:14:48 davidg Exp $
*/
#include "apm.h"
@@ -1071,7 +1071,7 @@ init386(first)
int pagesinbase, pagesinext;
int target_page, pa_indx;
int off;
- int speculative_mtest;
+ int speculative_mprobe;
proc0.p_addr = proc0paddr;
@@ -1299,23 +1299,23 @@ init386(first)
* pages) - which is the largest amount that the BIOS/bootblocks can
* currently report. If a specific amount of memory is indicated via
* the MAXMEM option or the npx0 "msize", then don't do the speculative
- * memory test.
+ * memory probe.
*/
if (Maxmem == 0x4000)
- speculative_mtest = TRUE;
+ speculative_mprobe = TRUE;
else
- speculative_mtest = FALSE;
+ speculative_mprobe = FALSE;
#ifdef MAXMEM
Maxmem = MAXMEM/4;
- speculative_mtest = FALSE;
+ speculative_mprobe = FALSE;
#endif
#if NNPX > 0
idp = find_isadev(isa_devtab_null, &npxdriver, 0);
if (idp != NULL && idp->id_msize != 0) {
Maxmem = idp->id_msize / 4;
- speculative_mtest = FALSE;
+ speculative_mprobe = FALSE;
}
#endif
@@ -1410,7 +1410,7 @@ init386(first)
*/
if (phys_avail[pa_indx] == target_page) {
phys_avail[pa_indx] += PAGE_SIZE;
- if (speculative_mtest == TRUE &&
+ if (speculative_mprobe == TRUE &&
phys_avail[pa_indx] >= (64*1024*1024))
Maxmem++;
} else {
OpenPOWER on IntegriCloud