diff options
author | 2001-07-15 10:48:30 +0000 | |
---|---|---|
committer | 2001-07-15 10:48:30 +0000 | |
commit | 4e9ef6b7ce53ad4744e24b2dbf141819a871666c (patch) | |
tree | 9eb95ed217fa2930a5bac075d24bf2c211cda07a | |
parent | spelling (diff) | |
download | wireguard-openbsd-4e9ef6b7ce53ad4744e24b2dbf141819a871666c.tar.xz wireguard-openbsd-4e9ef6b7ce53ad4744e24b2dbf141819a871666c.zip |
Comment clarification and indent; ok mickey@
-rw-r--r-- | sys/arch/i386/i386/machdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/machdep.c b/sys/arch/i386/i386/machdep.c index f57f741123f..dd27775341a 100644 --- a/sys/arch/i386/i386/machdep.c +++ b/sys/arch/i386/i386/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.167 2001/07/05 10:00:30 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.168 2001/07/15 10:48:30 niklas Exp $ */ /* $NetBSD: machdep.c,v 1.214 1996/11/10 03:16:17 thorpej Exp $ */ /*- @@ -2100,13 +2100,13 @@ init386(first_avail) /* call pmap initialization to make new kernel address space */ pmap_bootstrap((vm_offset_t)atdevbase + IOM_SIZE); - /* Boot arguments are in page 1 */ + /* Boot arguments are in a single page specified by /boot */ if (bootapiver & BAPIV_VECTOR) { if (bootargc > NBPG) panic ("too many boot args"); - if (extent_alloc_region(iomem_ex, (paddr_t)bootargv, - bootargc, EX_NOWAIT)) + if (extent_alloc_region(iomem_ex, (paddr_t)bootargv, bootargc, + EX_NOWAIT)) panic("cannot reserve /boot args memory"); pmap_enter(pmap_kernel(), (vaddr_t)bootargp, (paddr_t)bootargv, |