Home
last modified time | relevance | path

Searched refs:physfree (Results 1 – 5 of 5) sorted by relevance

/freebsd-13-stable/sys/x86/xen/
HDpv.c199 uint64_t physfree; in hammer_time_xen_legacy() local
217 physfree = xenstack + 3 * PAGE_SIZE - KERNBASE; in hammer_time_xen_legacy()
257 kenv = (void *)(physfree + KERNBASE); in hammer_time_xen_legacy()
258 physfree += PAGE_SIZE; in hammer_time_xen_legacy()
268 return (hammer_time(0, physfree)); in hammer_time_xen_legacy()
276 uint64_t physfree; in hammer_time_xen() local
301 physfree = roundup2(start_info_paddr + PAGE_SIZE, PAGE_SIZE); in hammer_time_xen()
306 xatp.gpfn = atop(physfree); in hammer_time_xen()
311 HYPERVISOR_shared_info = (shared_info_t *)(physfree + KERNBASE); in hammer_time_xen()
312 physfree += PAGE_SIZE; in hammer_time_xen()
[all …]
/freebsd-13-stable/sys/amd64/amd64/
HDmachdep.c1263 hammer_time(u_int64_t modulep, u_int64_t physfree) in hammer_time() argument
1306 physfree += kernphys; in hammer_time()
1319 physfree += ucode_load_bsp(physfree - kernphys + KERNSTART); in hammer_time()
1320 physfree = roundup2(physfree, PAGE_SIZE); in hammer_time()
1367 thread0.td_kstack = physfree - kernphys + KERNSTART; in hammer_time()
1371 physfree += kstack0_sz; in hammer_time()
1404 dpcpu_init((void *)(physfree - kernphys + KERNSTART), 0); in hammer_time()
1405 physfree += DPCPU_SIZE; in hammer_time()
1545 getmemsize(kmdp, physfree); in hammer_time()
/freebsd-13-stable/sys/i386/i386/
HDpmap.c371 extern u_long physfree; /* phys addr of next free page */
392 allocpages(u_int cnt, u_long *physfree) in allocpages() argument
396 res = *physfree; in allocpages()
397 *physfree += PAGE_SIZE * cnt; in allocpages()
444 physfree = (u_long)&_end; in __CONCAT()
446 physfree = bootinfo.bi_esymtab; in __CONCAT()
448 physfree = bootinfo.bi_kernend; in __CONCAT()
449 physfree = roundup2(physfree, NBPDR); in __CONCAT()
450 KERNend = physfree; in __CONCAT()
453 KPTphys = allocpages(NKPT, &physfree); in __CONCAT()
[all …]
HDlocore.s145 pushl physfree /* value of first for init386(first) */
HDpmap_base.c124 u_long physfree; /* phys addr of next free page */ variable