Avoid dump_avail[] redefinition.
Move dump_avail[] extern declaration and inlines into a new header vm/vm_dumpset.h. This fixes default gcc build for mips. Reviewed by: alc, scottph Tested by: kevans (previous version) Sponsored by: The FreeBSD Foundation Differential revision: https://reviews.freebsd.org/D26741
This commit is contained in:
parent
e12686ec23
commit
6f3b523c9a
@ -95,14 +95,15 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/vmmeter.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_kern.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_map.h>
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_pager.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#ifdef DDB
|
||||
#ifndef KDB
|
||||
|
@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <machine/atomic.h>
|
||||
#include <machine/elf.h>
|
||||
|
@ -149,6 +149,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_radix.h>
|
||||
#include <vm/vm_reserv.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/intr_machdep.h>
|
||||
|
@ -36,12 +36,13 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/systm.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
void *
|
||||
uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags,
|
||||
|
@ -65,11 +65,11 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <vm/vm_extern.h>
|
||||
|
||||
#include <machine/memdev.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
/*
|
||||
* Used in /dev/mem drivers and elsewhere
|
||||
|
@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <machine/atomic.h>
|
||||
#include <machine/cpu.h>
|
||||
|
@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/md_var.h>
|
||||
|
@ -143,6 +143,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_radix.h>
|
||||
#include <vm/vm_reserv.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/machdep.h>
|
||||
|
@ -34,12 +34,13 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/systm.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
void *
|
||||
uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags,
|
||||
|
@ -94,14 +94,15 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/vmmeter.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_kern.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_map.h>
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_pager.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#ifdef DDB
|
||||
#ifndef KDB
|
||||
|
@ -43,11 +43,11 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <machine/atomic.h>
|
||||
#include <machine/elf.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
#include <machine/minidump.h>
|
||||
|
||||
CTASSERT(sizeof(struct kerneldumpheader) == 512);
|
||||
|
@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <machine/dump.h>
|
||||
#include <machine/elf.h>
|
||||
|
@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <machine/md_var.h>
|
||||
|
||||
/*
|
||||
|
@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
|
||||
|
@ -48,6 +48,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
|
||||
|
@ -69,6 +69,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/bootinfo.h>
|
||||
#include <machine/clock.h>
|
||||
|
@ -61,6 +61,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/cache.h>
|
||||
#include <machine/clock.h>
|
||||
|
@ -60,6 +60,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/atomic.h>
|
||||
#include <machine/cache.h>
|
||||
|
@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <net/ethernet.h>
|
||||
|
||||
|
@ -58,6 +58,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/clock.h>
|
||||
#include <machine/cpu.h>
|
||||
|
@ -58,6 +58,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/cache.h>
|
||||
#include <machine/clock.h>
|
||||
|
@ -42,13 +42,14 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/watchdog.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/pmap.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <machine/atomic.h>
|
||||
#include <machine/elf.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
#include <machine/minidump.h>
|
||||
#include <machine/cache.h>
|
||||
|
||||
|
@ -95,6 +95,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_pager.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/cache.h>
|
||||
|
@ -36,12 +36,13 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/systm.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
void *
|
||||
uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags,
|
||||
|
@ -59,6 +59,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
|
||||
#include <machine/cpu.h>
|
||||
#include <machine/cpufunc.h>
|
||||
|
@ -82,6 +82,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/_inttypes.h>
|
||||
|
@ -68,6 +68,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_reserv.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/_inttypes.h>
|
||||
|
@ -99,16 +99,17 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/vmmeter.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_kern.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_map.h>
|
||||
#include <vm/vm_pager.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_pagequeue.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/_inttypes.h>
|
||||
|
@ -38,6 +38,7 @@
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/atomic.h>
|
||||
|
@ -36,15 +36,16 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_kern.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
static int hw_uma_mdpages;
|
||||
SYSCTL_INT(_hw, OID_AUTO, uma_mdpages, CTLFLAG_RD, &hw_uma_mdpages, 0,
|
||||
|
@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/atomic.h>
|
||||
|
@ -152,6 +152,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_radix.h>
|
||||
#include <vm/vm_reserv.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
|
||||
#include <machine/machdep.h>
|
||||
|
@ -34,12 +34,13 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/systm.h>
|
||||
#include <sys/vmmeter.h>
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <machine/md_var.h>
|
||||
#include <machine/vmparam.h>
|
||||
|
||||
void *
|
||||
uma_small_alloc(uma_zone_t zone, vm_size_t bytes, int domain, u_int8_t *flags,
|
||||
|
@ -82,16 +82,17 @@ __FBSDID("$FreeBSD$");
|
||||
#include <sys/vmmeter.h>
|
||||
|
||||
#include <vm/vm.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_domainset.h>
|
||||
#include <vm/vm_object.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_pageout.h>
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_pagequeue.h>
|
||||
#include <vm/vm_map.h>
|
||||
#include <vm/vm_kern.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
#include <vm/uma_dbg.h>
|
||||
|
99
sys/vm/vm_dumpset.h
Normal file
99
sys/vm/vm_dumpset.h
Normal file
@ -0,0 +1,99 @@
|
||||
/*-
|
||||
* SPDX-License-Identifier: BSD-2-Clause-FreeBSD
|
||||
*
|
||||
* Copyright (c) 2020, Scott Phillips <scottph@freebsd.org>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice unmodified, this list of conditions, and the following
|
||||
* disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
||||
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
||||
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $FreeBSD$
|
||||
*/
|
||||
|
||||
#ifndef _SYS_DUMPSET_H_
|
||||
#define _SYS_DUMPSET_H_
|
||||
|
||||
#include <sys/_bitset.h>
|
||||
#include <sys/bitset.h>
|
||||
|
||||
extern struct bitset *vm_page_dump;
|
||||
extern long vm_page_dump_pages;
|
||||
extern vm_paddr_t dump_avail[PHYS_AVAIL_COUNT];
|
||||
|
||||
static inline void
|
||||
dump_add_page(vm_paddr_t pa)
|
||||
{
|
||||
vm_pindex_t adj;
|
||||
int i;
|
||||
|
||||
adj = 0;
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
if (pa >= dump_avail[i] && pa < dump_avail[i + 1]) {
|
||||
BIT_SET_ATOMIC(vm_page_dump_pages,
|
||||
(pa >> PAGE_SHIFT) - (dump_avail[i] >> PAGE_SHIFT) +
|
||||
adj, vm_page_dump);
|
||||
return;
|
||||
}
|
||||
adj += howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
dump_drop_page(vm_paddr_t pa)
|
||||
{
|
||||
vm_pindex_t adj;
|
||||
int i;
|
||||
|
||||
adj = 0;
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
if (pa >= dump_avail[i] && pa < dump_avail[i + 1]) {
|
||||
BIT_CLR_ATOMIC(vm_page_dump_pages,
|
||||
(pa >> PAGE_SHIFT) - (dump_avail[i] >> PAGE_SHIFT) +
|
||||
adj, vm_page_dump);
|
||||
return;
|
||||
}
|
||||
adj += howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
}
|
||||
}
|
||||
|
||||
static inline vm_paddr_t
|
||||
vm_page_dump_index_to_pa(int bit)
|
||||
{
|
||||
int i, tot;
|
||||
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
tot = howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
if (bit < tot)
|
||||
return ((vm_paddr_t)bit * PAGE_SIZE +
|
||||
(dump_avail[i] & ~PAGE_MASK));
|
||||
bit -= tot;
|
||||
}
|
||||
return ((vm_paddr_t)NULL);
|
||||
}
|
||||
|
||||
#define VM_PAGE_DUMP_FOREACH(pa) \
|
||||
for (vm_pindex_t __b = BIT_FFS(vm_page_dump_pages, vm_page_dump); \
|
||||
(pa) = vm_page_dump_index_to_pa(__b - 1), __b != 0; \
|
||||
__b = BIT_FFS_AT(vm_page_dump_pages, vm_page_dump, __b))
|
||||
|
||||
#endif /* _SYS_DUMPSET_H_ */
|
@ -108,6 +108,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_radix.h>
|
||||
#include <vm/vm_reserv.h>
|
||||
#include <vm/vm_extern.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/uma.h>
|
||||
#include <vm/uma_int.h>
|
||||
|
||||
|
@ -69,8 +69,6 @@
|
||||
#ifndef _VM_PAGE_
|
||||
#define _VM_PAGE_
|
||||
|
||||
#include <sys/_bitset.h>
|
||||
#include <sys/bitset.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
/*
|
||||
@ -587,69 +585,6 @@ malloc2vm_flags(int malloc_flags)
|
||||
#define PS_ALL_VALID 0x2
|
||||
#define PS_NONE_BUSY 0x4
|
||||
|
||||
extern struct bitset *vm_page_dump;
|
||||
extern long vm_page_dump_pages;
|
||||
extern vm_paddr_t dump_avail[];
|
||||
|
||||
static inline void
|
||||
dump_add_page(vm_paddr_t pa)
|
||||
{
|
||||
vm_pindex_t adj;
|
||||
int i;
|
||||
|
||||
adj = 0;
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
if (pa >= dump_avail[i] && pa < dump_avail[i + 1]) {
|
||||
BIT_SET_ATOMIC(vm_page_dump_pages,
|
||||
(pa >> PAGE_SHIFT) - (dump_avail[i] >> PAGE_SHIFT) +
|
||||
adj, vm_page_dump);
|
||||
return;
|
||||
}
|
||||
adj += howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
}
|
||||
}
|
||||
|
||||
static inline void
|
||||
dump_drop_page(vm_paddr_t pa)
|
||||
{
|
||||
vm_pindex_t adj;
|
||||
int i;
|
||||
|
||||
adj = 0;
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
if (pa >= dump_avail[i] && pa < dump_avail[i + 1]) {
|
||||
BIT_CLR_ATOMIC(vm_page_dump_pages,
|
||||
(pa >> PAGE_SHIFT) - (dump_avail[i] >> PAGE_SHIFT) +
|
||||
adj, vm_page_dump);
|
||||
return;
|
||||
}
|
||||
adj += howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
}
|
||||
}
|
||||
|
||||
static inline vm_paddr_t
|
||||
vm_page_dump_index_to_pa(int bit)
|
||||
{
|
||||
int i, tot;
|
||||
|
||||
for (i = 0; dump_avail[i + 1] != 0; i += 2) {
|
||||
tot = howmany(dump_avail[i + 1], PAGE_SIZE) -
|
||||
dump_avail[i] / PAGE_SIZE;
|
||||
if (bit < tot)
|
||||
return ((vm_paddr_t)bit * PAGE_SIZE +
|
||||
(dump_avail[i] & ~PAGE_MASK));
|
||||
bit -= tot;
|
||||
}
|
||||
return ((vm_paddr_t)NULL);
|
||||
}
|
||||
|
||||
#define VM_PAGE_DUMP_FOREACH(pa) \
|
||||
for (vm_pindex_t __b = BIT_FFS(vm_page_dump_pages, vm_page_dump); \
|
||||
(pa) = vm_page_dump_index_to_pa(__b - 1), __b != 0; \
|
||||
__b = BIT_FFS_AT(vm_page_dump_pages, vm_page_dump, __b))
|
||||
|
||||
bool vm_page_busy_acquire(vm_page_t m, int allocflags);
|
||||
void vm_page_busy_downgrade(vm_page_t m);
|
||||
int vm_page_busy_tryupgrade(vm_page_t m);
|
||||
|
@ -47,7 +47,6 @@
|
||||
#endif
|
||||
|
||||
extern vm_paddr_t phys_avail[PHYS_AVAIL_COUNT];
|
||||
extern vm_paddr_t dump_avail[PHYS_AVAIL_COUNT];
|
||||
|
||||
/* Domains must be dense (non-sparse) and zero-based. */
|
||||
struct mem_affinity {
|
||||
|
@ -66,6 +66,7 @@ __FBSDID("$FreeBSD$");
|
||||
#include <vm/vm_param.h>
|
||||
#include <vm/vm_page.h>
|
||||
#include <vm/vm_phys.h>
|
||||
#include <vm/vm_dumpset.h>
|
||||
#include <vm/pmap.h>
|
||||
|
||||
#include <machine/metadata.h>
|
||||
|
Loading…
Reference in New Issue
Block a user