summaryrefslogtreecommitdiff
path: root/sys/uvm
diff options
context:
space:
mode:
authorKenji Aoyama <aoyama@cvs.openbsd.org>2022-01-29 06:25:34 +0000
committerKenji Aoyama <aoyama@cvs.openbsd.org>2022-01-29 06:25:34 +0000
commitf2d367c551ae4a32b81dbf3bb4589b6050d16c99 (patch)
treec3a08e1d623a9b9e673939245430d1b06629fbeb /sys/uvm
parenta66463cca434d158a084e56c31a76fc89358dffc (diff)
Fix macro name in comment.
ok visa@
Diffstat (limited to 'sys/uvm')
-rw-r--r--sys/uvm/uvm_page.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/uvm/uvm_page.h b/sys/uvm/uvm_page.h
index e29a872bf39..e1f1016b71f 100644
--- a/sys/uvm/uvm_page.h
+++ b/sys/uvm/uvm_page.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: uvm_page.h,v 1.66 2021/03/26 13:40:05 mpi Exp $ */
+/* $OpenBSD: uvm_page.h,v 1.67 2022/01/29 06:25:33 aoyama Exp $ */
/* $NetBSD: uvm_page.h,v 1.19 2000/12/28 08:24:55 chs Exp $ */
/*
@@ -171,9 +171,9 @@ struct vm_page {
* physical memory layout structure
*
* MD vmparam.h must #define:
- * VM_PHYSEG_MAX = max number of physical memory segments we support
+ * VM_PHYSSEG_MAX = max number of physical memory segments we support
* (if this is "1" then we revert to a "contig" case)
- * VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSEG_MAX > 1)
+ * VM_PHYSSEG_STRAT: memory sort/search options (for VM_PHYSSEG_MAX > 1)
* - VM_PSTRAT_RANDOM: linear search (random order)
* - VM_PSTRAT_BSEARCH: binary search (sorted by address)
* - VM_PSTRAT_BIGFIRST: linear search (sorted by largest segment first)