summaryrefslogtreecommitdiffstats
path: root/sys/mips/mips/machdep.c
diff options
context:
space:
mode:
authorjchandra <jchandra@FreeBSD.org>2011-02-28 21:33:26 +0000
committerjchandra <jchandra@FreeBSD.org>2011-02-28 21:33:26 +0000
commit1120f045d21b22400cfdfa794db3c37109fd5969 (patch)
tree2468e4e830eefeb71887064a011bfc39d9064c47 /sys/mips/mips/machdep.c
parente89f07d0108225bdb370c9360173f79476cef0fb (diff)
downloadFreeBSD-src-1120f045d21b22400cfdfa794db3c37109fd5969.zip
FreeBSD-src-1120f045d21b22400cfdfa794db3c37109fd5969.tar.gz
Use correct types and fromats for physical address
- Use vm_paddr_t for pa in pmap_steal_memory() - Use uintmax_t and %jx to ensure that physical address are printed correctly in cpu_startup() and pmap_bootstrap()
Diffstat (limited to 'sys/mips/mips/machdep.c')
-rw-r--r--sys/mips/mips/machdep.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/mips/mips/machdep.c b/sys/mips/mips/machdep.c
index 4be1307..4c80ea0 100644
--- a/sys/mips/mips/machdep.c
+++ b/sys/mips/mips/machdep.c
@@ -184,8 +184,8 @@ cpu_startup(void *dummy)
if (boothowto & RB_VERBOSE)
bootverbose++;
- printf("real memory = %lu (%luK bytes)\n", ptoa(realmem),
- ptoa(realmem) / 1024);
+ printf("real memory = %ju (%juK bytes)\n", ptoa((uintmax_t)realmem),
+ ptoa((uintmax_t)realmem) / 1024);
/*
* Display any holes after the first chunk of extended memory.
@@ -195,13 +195,13 @@ cpu_startup(void *dummy)
printf("Physical memory chunk(s):\n");
for (indx = 0; phys_avail[indx + 1] != 0; indx += 2) {
- uintptr_t size1 = phys_avail[indx + 1] - phys_avail[indx];
+ vm_paddr_t size1 = phys_avail[indx + 1] - phys_avail[indx];
- printf("0x%08llx - 0x%08llx, %llu bytes (%llu pages)\n",
- (unsigned long long)phys_avail[indx],
- (unsigned long long)phys_avail[indx + 1] - 1,
- (unsigned long long)size1,
- (unsigned long long)size1 / PAGE_SIZE);
+ printf("0x%08jx - 0x%08jx, %ju bytes (%ju pages)\n",
+ (uintmax_t)phys_avail[indx],
+ (uintmax_t)phys_avail[indx + 1] - 1,
+ (uintmax_t)size1,
+ (uintmax_t)size1 / PAGE_SIZE);
}
}
OpenPOWER on IntegriCloud