mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Conditionally compile struct vm_phys_seg's md_first field. This field is
only used by arm64's pmap. Reviewed by: kib, markj, scottph Differential Revision: https://reviews.freebsd.org/D26907
This commit is contained in:
parent
e2e43aafd7
commit
ccfd886a1b
1 changed files with 2 additions and 0 deletions
|
|
@ -71,7 +71,9 @@ struct vm_phys_seg {
|
|||
#if VM_NRESERVLEVEL > 0
|
||||
vm_reserv_t first_reserv;
|
||||
#endif
|
||||
#ifdef __aarch64__
|
||||
void *md_first;
|
||||
#endif
|
||||
int domain;
|
||||
struct vm_freelist (*free_queues)[VM_NFREEPOOL][VM_NFREEORDER_MAX];
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue