Home
last modified time | relevance | path

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

/f-stack/freebsd/x86/xen/
H A Dpv.c202 uint64_t physfree; in hammer_time_xen_legacy() local
260 kenv = (void *)(physfree + KERNBASE); in hammer_time_xen_legacy()
261 physfree += PAGE_SIZE; in hammer_time_xen_legacy()
271 return (hammer_time(0, physfree)); in hammer_time_xen_legacy()
279 uint64_t physfree; in hammer_time_xen() local
309 xatp.gpfn = atop(physfree); in hammer_time_xen()
315 physfree += PAGE_SIZE; in hammer_time_xen()
321 kenv = (void *)(physfree + KERNBASE); in hammer_time_xen()
322 physfree += PAGE_SIZE; in hammer_time_xen()
339 if (mod[0].paddr >= physfree) { in hammer_time_xen()
[all …]
/f-stack/freebsd/amd64/amd64/
H A Dmachdep.c1618 hammer_time(u_int64_t modulep, u_int64_t physfree) in hammer_time() argument
1635 physfree += ucode_load_bsp(physfree + KERNBASE); in hammer_time()
1636 physfree = roundup2(physfree, PAGE_SIZE); in hammer_time()
1670 thread0.td_kstack = physfree + KERNBASE; in hammer_time()
1674 physfree += kstack0_sz; in hammer_time()
1707 dpcpu_init((void *)(physfree + KERNBASE), 0); in hammer_time()
1708 physfree += DPCPU_SIZE; in hammer_time()
1844 getmemsize(kmdp, physfree); in hammer_time()
/f-stack/freebsd/i386/i386/
H A Dpmap.c394 allocpages(u_int cnt, u_long *physfree) in allocpages() argument
398 res = *physfree; in allocpages()
399 *physfree += PAGE_SIZE * cnt; in allocpages()
446 physfree = (u_long)&_end; in __CONCAT()
448 physfree = bootinfo.bi_esymtab; in __CONCAT()
450 physfree = bootinfo.bi_kernend; in __CONCAT()
451 physfree = roundup2(physfree, NBPDR); in __CONCAT()
452 KERNend = physfree; in __CONCAT()
455 KPTphys = allocpages(NKPT, &physfree); in __CONCAT()
471 allocpages(1, &physfree); in __CONCAT()
[all …]
H A Dlocore.s146 pushl physfree /* value of first for init386(first) */
H A Dpmap_base.c126 u_long physfree; /* phys addr of next free page */ variable