vm_phys.c (3af64f03119a159ac15eb75b92d346705b490385) vm_phys.c (463406ac4a531b8f4c6102715c17da6183d10be3)
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2002-2006 Rice University
5 * Copyright (c) 2007 Alan L. Cox <alc@cs.rice.edu>
6 * All rights reserved.
7 *
8 * This software was developed for the FreeBSD Project by Alan L. Cox,

--- 64 unchanged lines hidden (view full) ---

73 "Too many physsegs.");
74
75#ifdef NUMA
76struct mem_affinity __read_mostly *mem_affinity;
77int __read_mostly *mem_locality;
78#endif
79
80int __read_mostly vm_ndomains = 1;
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2002-2006 Rice University
5 * Copyright (c) 2007 Alan L. Cox <alc@cs.rice.edu>
6 * All rights reserved.
7 *
8 * This software was developed for the FreeBSD Project by Alan L. Cox,

--- 64 unchanged lines hidden (view full) ---

73 "Too many physsegs.");
74
75#ifdef NUMA
76struct mem_affinity __read_mostly *mem_affinity;
77int __read_mostly *mem_locality;
78#endif
79
80int __read_mostly vm_ndomains = 1;
81domainset_t __read_mostly all_domains = DOMAINSET_T_INITIALIZER(0x1);
81
82struct vm_phys_seg __read_mostly vm_phys_segs[VM_PHYSSEG_MAX];
83int __read_mostly vm_phys_nsegs;
84
85struct vm_phys_fictitious_seg;
86static int vm_phys_fictitious_cmp(struct vm_phys_fictitious_seg *,
87 struct vm_phys_fictitious_seg *);
88

--- 1315 unchanged lines hidden ---
82
83struct vm_phys_seg __read_mostly vm_phys_segs[VM_PHYSSEG_MAX];
84int __read_mostly vm_phys_nsegs;
85
86struct vm_phys_fictitious_seg;
87static int vm_phys_fictitious_cmp(struct vm_phys_fictitious_seg *,
88 struct vm_phys_fictitious_seg *);
89

--- 1315 unchanged lines hidden ---