git: 8490d5ec8e0e - stable/13 - Adjust comments referencing vm_mem_init()

From: Mitchell Horne <mhorne_at_FreeBSD.org>
Date: Thu, 06 Jun 2024 15:55:00 UTC
The branch stable/13 has been updated by mhorne:

URL: https://cgit.FreeBSD.org/src/commit/?id=8490d5ec8e0e642de1cf8d1ed474bdd45edb7dbc

commit 8490d5ec8e0e642de1cf8d1ed474bdd45edb7dbc
Author:     Mitchell Horne <mhorne@FreeBSD.org>
AuthorDate: 2024-05-27 21:37:40 +0000
Commit:     Mitchell Horne <mhorne@FreeBSD.org>
CommitDate: 2024-06-06 15:54:35 +0000

    Adjust comments referencing vm_mem_init()
    
    I cannot find a time where the function was not named this.
    
    Reviewed by:    kib, markj
    MFC after:      3 days
    Sponsored by:   The FreeBSD Foundation
    Differential Revision:  https://reviews.freebsd.org/D45383
    
    (cherry picked from commit deab57178f0b06eab56d7811674176985a8ea98d)
---
 sys/amd64/amd64/pmap.c   | 7 ++++---
 sys/arm/arm/pmap-v6.c    | 5 +++--
 sys/arm64/arm64/pmap.c   | 3 ++-
 sys/i386/i386/pmap.c     | 3 ++-
 sys/kern/kern_malloc.c   | 3 ++-
 sys/powerpc/booke/pmap.c | 5 +++--
 sys/riscv/riscv/pmap.c   | 3 ++-
 sys/vm/vm_init.c         | 2 +-
 8 files changed, 19 insertions(+), 12 deletions(-)

diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index 8f1541bc8637..5d848cdd7aac 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -1573,8 +1573,8 @@ nkpt_init(vm_paddr_t addr)
 	 * Secondly, device memory mapped as part of setting up the low-
 	 * level console(s) is taken from KVA, starting at virtual_avail.
 	 * This is because cninit() is called after pmap_bootstrap() but
-	 * before vm_init() and pmap_init(). 20MB for a frame buffer is
-	 * not uncommon.
+	 * before vm_mem_init() and pmap_init(). 20MB for a frame buffer
+	 * is not uncommon.
 	 */
 	pt_pages += 32;		/* 64MB additional slop. */
 #endif
@@ -2372,7 +2372,8 @@ pmap_init_pv_table(void)
 
 /*
  *	Initialize the pmap module.
- *	Called by vm_init, to initialize any structures that the pmap
+ *
+ *	Called by vm_mem_init(), to initialize any structures that the pmap
  *	system needs to map virtual memory.
  */
 void
diff --git a/sys/arm/arm/pmap-v6.c b/sys/arm/arm/pmap-v6.c
index 0446a67bdbcf..e553df3d9538 100644
--- a/sys/arm/arm/pmap-v6.c
+++ b/sys/arm/arm/pmap-v6.c
@@ -1707,8 +1707,9 @@ pmap_pt2pg_init(pmap_t pmap, vm_offset_t va, vm_page_t m)
 
 /*
  *  Initialize the pmap module.
- *  Called by vm_init, to initialize any structures that the pmap
- *  system needs to map virtual memory.
+ *
+ *  Called by vm_mem_init(), to initialize any structures that the pmap system
+ *  needs to map virtual memory.
  */
 void
 pmap_init(void)
diff --git a/sys/arm64/arm64/pmap.c b/sys/arm64/arm64/pmap.c
index 49ca89135883..cb5c2629fd3e 100644
--- a/sys/arm64/arm64/pmap.c
+++ b/sys/arm64/arm64/pmap.c
@@ -1199,7 +1199,8 @@ pmap_init_asids(struct asid_set *set, int bits)
 
 /*
  *	Initialize the pmap module.
- *	Called by vm_init, to initialize any structures that the pmap
+ *
+ *	Called by vm_mem_init(), to initialize any structures that the pmap
  *	system needs to map virtual memory.
  */
 void
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index 5913ea927d75..d969d97c35bc 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -961,7 +961,8 @@ pmap_ptelist_init(vm_offset_t *head, void *base, int npages)
 
 /*
  *	Initialize the pmap module.
- *	Called by vm_init, to initialize any structures that the pmap
+ *
+ *	Called by vm_mem_init(), to initialize any structures that the pmap
  *	system needs to map virtual memory.
  */
 static void
diff --git a/sys/kern/kern_malloc.c b/sys/kern/kern_malloc.c
index 318c47da2ab1..0720c36740ee 100644
--- a/sys/kern/kern_malloc.c
+++ b/sys/kern/kern_malloc.c
@@ -1251,7 +1251,8 @@ malloc_init(void *data)
 	struct malloc_type_internal *mtip;
 	struct malloc_type *mtp;
 
-	KASSERT(vm_cnt.v_page_count != 0, ("malloc_register before vm_init"));
+	KASSERT(vm_cnt.v_page_count != 0,
+	    ("malloc_init() called before vm_mem_init()"));
 
 	mtp = data;
 	if (mtp->ks_version != M_VERSION)
diff --git a/sys/powerpc/booke/pmap.c b/sys/powerpc/booke/pmap.c
index f85bb8d56f74..20e582cc737a 100644
--- a/sys/powerpc/booke/pmap.c
+++ b/sys/powerpc/booke/pmap.c
@@ -1048,8 +1048,9 @@ mmu_booke_kextract(vm_offset_t va)
 
 /*
  * Initialize the pmap module.
- * Called by vm_init, to initialize any structures that the pmap
- * system needs to map virtual memory.
+ *
+ * Called by vm_mem_init(), to initialize any structures that the pmap system
+ * needs to map virtual memory.
  */
 static void
 mmu_booke_init()
diff --git a/sys/riscv/riscv/pmap.c b/sys/riscv/riscv/pmap.c
index d1996dabbc2c..24d71dae8478 100644
--- a/sys/riscv/riscv/pmap.c
+++ b/sys/riscv/riscv/pmap.c
@@ -766,7 +766,8 @@ pmap_page_init(vm_page_t m)
 
 /*
  *	Initialize the pmap module.
- *	Called by vm_init, to initialize any structures that the pmap
+ *
+ *	Called by vm_mem_init(), to initialize any structures that the pmap
  *	system needs to map virtual memory.
  */
 void
diff --git a/sys/vm/vm_init.c b/sys/vm/vm_init.c
index 886e1765d45d..4476c9c79665 100644
--- a/sys/vm/vm_init.c
+++ b/sys/vm/vm_init.c
@@ -104,7 +104,7 @@ static void vm_mem_init(void *);
 SYSINIT(vm_mem, SI_SUB_VM, SI_ORDER_FIRST, vm_mem_init, NULL);
 
 /*
- *	vm_init initializes the virtual memory system.
+ *	vm_mem_init() initializes the virtual memory system.
  *	This is done only by the first cpu up.
  */
 static void