Searched refs:physfree (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/x86/xen/ |
H A D | pv.c | 160 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 D | machdep.c | 1284 hammer_time(u_int64_t modulep, u_int64_t physfree) in hammer_time() argument 1298 physfree += kernphys; in hammer_time() 1311 physfree += ucode_load_bsp(physfree - kernphys + KERNSTART); in hammer_time() 1312 physfree = roundup2(physfree, PAGE_SIZE); in hammer_time() 1360 thread0.td_kstack = physfree - kernphys + KERNSTART; in hammer_time() 1364 physfree += kstack0_sz; in hammer_time() 1397 dpcpu_init((void *)(physfree - kernphys + KERNSTART), 0); in hammer_time() 1398 physfree += DPCPU_SIZE; in hammer_time() 1534 getmemsize(physfree); in hammer_time()
|
/freebsd/sys/i386/i386/ |
H A D | pmap.c | 361 extern u_long physfree; /* phys addr of next free page */ 382 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() [all...] |
H A D | locore.S | 143 pushl physfree /* value of first for init386(first) */
|
H A D | pmap_base.c | 122 u_long physfree; /* phys addr of next free page */ variable
|