diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-09-22 17:41:01 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2011-09-22 17:41:01 +0000 |
commit | f8d8db919f152c112624d105f03f7a427079d6dc (patch) | |
tree | e910048b99a4c324359e7b1041b5829d7c527a66 /sys/arch | |
parent | bda51049c974e442c41e30ce07c5e75b4cddcbd0 (diff) |
nowadays uvm_init() calls pmap_init(), not vm_init(); so update the comments.
ok ariane@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/alpha/alpha/pmap.c | 4 | ||||
-rw-r--r-- | sys/arch/m68k/m68k/pmap_motorola.c | 4 | ||||
-rw-r--r-- | sys/arch/mips64/mips64/pmap.c | 4 | ||||
-rw-r--r-- | sys/arch/sparc/sparc/pmap.c | 6 | ||||
-rw-r--r-- | sys/arch/sparc64/sparc64/pmap.c | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/sys/arch/alpha/alpha/pmap.c b/sys/arch/alpha/alpha/pmap.c index 2b759060fe7..720febf9fc4 100644 --- a/sys/arch/alpha/alpha/pmap.c +++ b/sys/arch/alpha/alpha/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.60 2010/11/28 21:01:41 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.61 2011/09/22 17:41:00 jasper Exp $ */ /* $NetBSD: pmap.c,v 1.154 2000/12/07 22:18:55 thorpej Exp $ */ /*- @@ -1085,7 +1085,7 @@ pmap_steal_memory(vsize_t size, vaddr_t *vstartp, vaddr_t *vendp) /* * pmap_init: [ INTERFACE ] * - * Initialize the pmap module. Called by vm_init(), to initialize any + * Initialize the pmap module. Called by uvm_init(), to initialize any * structures that the pmap system needs to map virtual memory. * * Note: no locking is necessary in this function. diff --git a/sys/arch/m68k/m68k/pmap_motorola.c b/sys/arch/m68k/m68k/pmap_motorola.c index 6825f3f9b98..3eaffedb664 100644 --- a/sys/arch/m68k/m68k/pmap_motorola.c +++ b/sys/arch/m68k/m68k/pmap_motorola.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_motorola.c,v 1.62 2011/05/27 20:10:18 miod Exp $ */ +/* $OpenBSD: pmap_motorola.c,v 1.63 2011/09/22 17:41:00 jasper Exp $ */ /* * Copyright (c) 1999 The NetBSD Foundation, Inc. @@ -391,7 +391,7 @@ pmap_virtual_space(vstartp, vendp) /* * pmap_init: [ INTERFACE ] * - * Initialize the pmap module. Called by vm_init(), to initialize any + * Initialize the pmap module. Called by uvm_init(), to initialize any * structures that the pmap system needs to map virtual memory. * * Note: no locking is necessary in this function. diff --git a/sys/arch/mips64/mips64/pmap.c b/sys/arch/mips64/mips64/pmap.c index fe85e3de27b..1a102f03543 100644 --- a/sys/arch/mips64/mips64/pmap.c +++ b/sys/arch/mips64/mips64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.53 2011/04/07 18:11:52 miod Exp $ */ +/* $OpenBSD: pmap.c,v 1.54 2011/09/22 17:41:00 jasper Exp $ */ /* * Copyright (c) 2001-2004 Opsycon AB (www.opsycon.se / www.opsycon.com) @@ -458,7 +458,7 @@ pmap_steal_memory(vsize_t size, vaddr_t *vstartp, vaddr_t *vendp) /* * Initialize the pmap module. - * Called by vm_init, to initialize any structures that the pmap + * Called by uvm_init, to initialize any structures that the pmap * system needs to map virtual memory. */ void diff --git a/sys/arch/sparc/sparc/pmap.c b/sys/arch/sparc/sparc/pmap.c index c5ce01f0350..7148e783c3e 100644 --- a/sys/arch/sparc/sparc/pmap.c +++ b/sys/arch/sparc/sparc/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.160 2011/05/30 22:25:22 oga Exp $ */ +/* $OpenBSD: pmap.c,v 1.161 2011/09/22 17:41:00 jasper Exp $ */ /* $NetBSD: pmap.c,v 1.118 1998/05/19 19:00:18 thorpej Exp $ */ /* @@ -2836,7 +2836,7 @@ pmap_bootstrap4_4c(void *top, int nctx, int nregion, int nsegment) TAILQ_INIT(&segm_locked); /* - * Set up the `constants' for the call to vm_init() + * Set up the `constants' for the call to uvm_init() * in main(). All pages beginning at p (rounded up to * the next whole page) and continuing through the number * of available pages are free, but they start at a higher @@ -3158,7 +3158,7 @@ pmap_bootstrap4m(void *top) #endif /* - * Set up the `constants' for the call to vm_init() + * Set up the `constants' for the call to uvm_init() * in main(). All pages beginning at p (rounded up to * the next whole page) and continuing through the number * of available pages are free. diff --git a/sys/arch/sparc64/sparc64/pmap.c b/sys/arch/sparc64/sparc64/pmap.c index ffa523a55a4..c3167c21009 100644 --- a/sys/arch/sparc64/sparc64/pmap.c +++ b/sys/arch/sparc64/sparc64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.74 2011/05/30 22:25:22 oga Exp $ */ +/* $OpenBSD: pmap.c,v 1.75 2011/09/22 17:41:00 jasper 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 */ /* @@ -1564,7 +1564,7 @@ sun4v_bootstrap_cpu(paddr_t intstack) /* * Initialize anything else for pmap handling. - * Called during vm_init(). + * Called during uvm_init(). */ void pmap_init() |