diff options
| author | Olivier Certner <olce@FreeBSD.org> | 2026-02-16 12:53:16 +0000 |
|---|---|---|
| committer | Olivier Certner <olce@FreeBSD.org> | 2026-02-19 10:29:02 +0000 |
| commit | d18aaeff8fd314e79642062d95110ad174bd1882 (patch) | |
| tree | 19797a56fb08440a225d1414a0e1a3e77a27ed5c | |
| parent | f015e48a4a0482787b46e972754619a75475439c (diff) | |
vm_page.h: Materialize a spare bit
No functional change (intended).
MFC after: 2 weeks
Sponsored by: The FreeBSD Foundation
| -rw-r--r-- | sys/vm/vm_page.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/vm/vm_page.h b/sys/vm/vm_page.h index 0a143544e907..a091310ffd17 100644 --- a/sys/vm/vm_page.h +++ b/sys/vm/vm_page.h @@ -487,6 +487,7 @@ vm_page_t PHYS_TO_VM_PAGE(vm_paddr_t pa); #define VM_ALLOC_INTERRUPT 1 #define VM_ALLOC_SYSTEM 2 #define VM_ALLOC_CLASS_MASK 3 +#define VM_ALLOC_AVAIL0 0x0004 #define VM_ALLOC_WAITOK 0x0008 /* (gnp) Sleep and retry */ #define VM_ALLOC_WAITFAIL 0x0010 /* (acgnp) Sleep and return error */ #define VM_ALLOC_WIRED 0x0020 /* (acgnp) Allocate a wired page */ |
