vm_phys: Fix a typo

Fixes:	b16b4c22d2 ("vm_page: Implement lazy page initialization")
Reported by:	Steffen Nurpmeso <steffen@sdaoden.eu>
This commit is contained in:
Mark Johnston 2024-06-15 10:54:23 -04:00
parent 774549fe06
commit 4441dd4094
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@
* Create three free page pools: VM_FREEPOOL_DEFAULT is the default pool from
* which physical pages are allocated and VM_FREEPOOL_DIRECT is the pool from
* which physical pages for page tables and small UMA objects are allocated.
* VM_FREEPOOL_LAZINIT is a special-purpose pool that is populated only during
* VM_FREEPOOL_LAZYINIT is a special-purpose pool that is populated only during
* boot and is used to implement deferred initialization of page structures.
*/
#define VM_NFREEPOOL 3

View file

@ -76,7 +76,7 @@
* Create three free page pools: VM_FREEPOOL_DEFAULT is the default pool from
* which physical pages are allocated and VM_FREEPOOL_DIRECT is the pool from
* which physical pages for page tables and small UMA objects are allocated.
* VM_FREEPOOL_LAZINIT is a special-purpose pool that is populated only during
* VM_FREEPOOL_LAZYINIT is a special-purpose pool that is populated only during
* boot and is used to implement deferred initialization of page structures.
*/
#define VM_NFREEPOOL 3