diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-04-05 20:08:31 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2007-04-05 20:08:31 +0000 |
commit | 42049bfce1cb9d0daf3bf8f357fc7739f1ccfff8 (patch) | |
tree | 22e862b970485503e9d4d567be10585ce13e8856 /sys/arch | |
parent | ee19d3db3a29dd7105edfa4b809d84277c685cb1 (diff) |
Fix a comment. 64KB is enough for the cpu_info structure. 64MB would be a
bit lavish. OK jason@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/sparc64/pmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/sparc64/pmap.c b/sys/arch/sparc64/sparc64/pmap.c index 6b44839be2f..c7239cc19e3 100644 --- a/sys/arch/sparc64/sparc64/pmap.c +++ b/sys/arch/sparc64/sparc64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.35 2007/04/04 17:44:45 art Exp $ */ +/* $OpenBSD: pmap.c,v 1.36 2007/04/05 20:08:30 claudio Exp $ */ /* $NetBSD: pmap.c,v 1.107 2001/08/31 16:47:41 eeh Exp $ */ #undef NO_VCACHE /* Don't forget the locked TLB in dostart */ /* @@ -1031,7 +1031,7 @@ remap_data: #endif /* - * Allocate a 64MB page for the cpu_info structure now. + * Allocate a 64KB page for the cpu_info structure now. */ if ((cpu0paddr = prom_alloc_phys(8*NBPG, 8*NBPG)) == 0 ) { prom_printf("Cannot allocate new cpu_info\r\n"); |