Line up memory amount reporting that got broken when s/real/usable/.
This commit is contained in:
parent
62b36a7fc2
commit
81490cbe6f
@ -196,7 +196,7 @@ cpu_startup(dummy)
|
|||||||
#ifdef PERFMON
|
#ifdef PERFMON
|
||||||
perfmon_init();
|
perfmon_init();
|
||||||
#endif
|
#endif
|
||||||
printf("usable memory = %ju (%ju MB)\n", ptoa((uintmax_t)physmem),
|
printf("usable memory = %ju (%ju MB)\n", ptoa((uintmax_t)physmem),
|
||||||
ptoa((uintmax_t)physmem) / 1048576);
|
ptoa((uintmax_t)physmem) / 1048576);
|
||||||
realmem = Maxmem;
|
realmem = Maxmem;
|
||||||
/*
|
/*
|
||||||
@ -220,7 +220,7 @@ cpu_startup(dummy)
|
|||||||
|
|
||||||
vm_ksubmap_init(&kmi);
|
vm_ksubmap_init(&kmi);
|
||||||
|
|
||||||
printf("avail memory = %ju (%ju MB)\n",
|
printf("avail memory = %ju (%ju MB)\n",
|
||||||
ptoa((uintmax_t)cnt.v_free_count),
|
ptoa((uintmax_t)cnt.v_free_count),
|
||||||
ptoa((uintmax_t)cnt.v_free_count) / 1048576);
|
ptoa((uintmax_t)cnt.v_free_count) / 1048576);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user