mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Fix-up r250338 by completing the removal of VM_NDOMAIN in favor of
MAXMEMDOM. This unbreak builds. Sponsored by: EMC / Isilon storage division Reported by: adrian, jeli
This commit is contained in:
parent
94f8d6fdba
commit
d0b5855eb2
1 changed files with 2 additions and 2 deletions
|
|
@ -464,7 +464,7 @@ vm_phys_alloc_pages(int pool, int order)
|
|||
vm_page_t
|
||||
vm_phys_alloc_freelist_pages(int flind, int pool, int order)
|
||||
{
|
||||
#if VM_NDOMAIN > 1
|
||||
#if MAXMEMDOM > 1
|
||||
vm_page_t m;
|
||||
int i, ndomains;
|
||||
#endif
|
||||
|
|
@ -477,7 +477,7 @@ vm_phys_alloc_freelist_pages(int flind, int pool, int order)
|
|||
KASSERT(order < VM_NFREEORDER,
|
||||
("vm_phys_alloc_freelist_pages: order %d is out of range", order));
|
||||
|
||||
#if VM_NDOMAIN > 1
|
||||
#if MAXMEMDOM > 1
|
||||
/*
|
||||
* This routine expects to be called with a VM_FREELIST_* constant.
|
||||
* On a system with multiple domains we need to adjust the flind
|
||||
|
|
|
|||
Loading…
Reference in a new issue