Home
last modified time | relevance | path

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

/freebsd/sys/x86/xen/
H A Dpv.c160 uint64_t physfree; in hammer_time_xen() local
174 physfree = roundup2(start_info_paddr + sizeof(struct hvm_start_info), in hammer_time_xen()
176 physfree = MAX(roundup2((vm_paddr_t)_end - KERNBASE, PAGE_SIZE), in hammer_time_xen()
177 physfree); in hammer_time_xen()
180 physfree = MAX(roundup2(start_info->memmap_paddr + in hammer_time_xen()
183 physfree); in hammer_time_xen()
195 physfree = MAX(roundup2(mod[i].paddr + mod[i].size, in hammer_time_xen()
196 PAGE_SIZE), physfree); in hammer_time_xen()
204 return (hammer_time(0, physfree)); in hammer_time_xen()
/freebsd/sys/amd64/amd64/
H A Dmachdep.c1287 hammer_time(u_int64_t modulep, u_int64_t physfree) in hammer_time() argument
1302 physfree += kernphys; in hammer_time()
1314 physfree += ucode_load_bsp(physfree - kernphys + KERNSTART); in hammer_time()
1315 physfree = roundup2(physfree, PAGE_SIZE); in hammer_time()
1363 thread0.td_kstack = physfree - kernphys + KERNSTART; in hammer_time()
1367 physfree += kstack0_sz; in hammer_time()
1400 dpcpu_init((void *)(physfree - kernphys + KERNSTART), 0); in hammer_time()
1401 physfree += DPCPU_SIZE; in hammer_time()
1537 getmemsize(kmdp, physfree); in hammer_time()
/freebsd/sys/i386/i386/
H A Dpmap.c382 allocpages(u_int cnt, u_long *physfree) in allocpages() argument
386 res = *physfree; in allocpages()
387 *physfree += PAGE_SIZE * cnt; in allocpages()
434 physfree = (u_long)&_end; in __CONCAT()
436 physfree = bootinfo.bi_esymtab; in __CONCAT()
438 physfree = bootinfo.bi_kernend; in __CONCAT()
439 physfree = roundup2(physfree, NBPDR); in __CONCAT()
440 KERNend = physfree; in __CONCAT()
443 KPTphys = allocpages(NKPT, &physfree); in __CONCAT()
459 allocpages(1, &physfree); in __CONCAT()
[all …]
H A Dlocore.S143 pushl physfree /* value of first for init386(first) */
H A Dpmap_base.c122 u_long physfree; /* phys addr of next free page */ variable