summaryrefslogtreecommitdiff
path: root/vm/vm_phys.c
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2012-10-03 01:23:21 +0200
committerRichard Braun <rbraun@sceen.net>2012-10-03 01:26:08 +0200
commita4485f033c4ffa07955a45cad30424aedb89dff4 (patch)
tree136381bd711a9e6bd54b0c31fb347b35028911d1 /vm/vm_phys.c
parent69504fc63720b4bf2677d6074285b82256bc9b83 (diff)
x86: new architecture
Merge 32-bit IA-32 (i386) and 64-bit AMD64 (amd64) code into one common architecture. The amd64 variant isn't functional yet.
Diffstat (limited to 'vm/vm_phys.c')
-rw-r--r--vm/vm_phys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm_phys.c b/vm/vm_phys.c
index 3e8a70f0..2852a034 100644
--- a/vm/vm_phys.c
+++ b/vm/vm_phys.c
@@ -527,7 +527,7 @@ vm_phys_setup(void)
pages += vm_page_atop(vm_phys_seg_size(&vm_phys_segs[i]));
map_size = P2ROUND(pages * sizeof(struct vm_page), PAGE_SIZE);
- printk("vm_phys: page table size: %u entries (%uk)\n", pages,
+ printk("vm_phys: page table size: %zu entries (%zuk)\n", pages,
map_size >> 10);
map = (struct vm_page *)vm_kmem_bootalloc(map_size);