Home
last modified time | relevance | path

Searched refs:n_pfns (Results 1 – 3 of 3) sorted by relevance

/linux-6.1.9/arch/x86/xen/
Dsetup.c96 unsigned long n_pfns) in xen_add_extra_mem() argument
106 if (xen_extra_mem[i].n_pfns == 0) { in xen_add_extra_mem()
108 xen_extra_mem[i].n_pfns = n_pfns; in xen_add_extra_mem()
112 if (xen_extra_mem[i].start_pfn + xen_extra_mem[i].n_pfns == in xen_add_extra_mem()
114 xen_extra_mem[i].n_pfns += n_pfns; in xen_add_extra_mem()
121 memblock_reserve(PFN_PHYS(start_pfn), PFN_PHYS(n_pfns)); in xen_add_extra_mem()
125 unsigned long n_pfns) in xen_del_extra_mem() argument
132 size_r = xen_extra_mem[i].n_pfns; in xen_del_extra_mem()
136 BUG_ON(n_pfns > size_r); in xen_del_extra_mem()
137 xen_extra_mem[i].start_pfn += n_pfns; in xen_del_extra_mem()
[all …]
/linux-6.1.9/include/xen/
Dpage.h38 unsigned long n_pfns; member
/linux-6.1.9/drivers/xen/
Dballoon.c700 pages = xen_extra_mem[i].n_pfns; in balloon_add_regions()