MCPcopy Create free account
hub / github.com/F-Stack/f-stack / pmap_kenter_pde

Function pmap_kenter_pde

freebsd/i386/i386/pmap.c:1172–1179  ·  view source on GitHub ↗

* The caller is responsible for maintaining TLB consistency. */

Source from the content-addressed store, hash-verified

1170 * The caller is responsible for maintaining TLB consistency.
1171 */
1172static void
1173pmap_kenter_pde(vm_offset_t va, pd_entry_t newpde)
1174{
1175 pd_entry_t *pde;
1176
1177 pde = pmap_pde(kernel_pmap, va);
1178 pde_store(pde, newpde);
1179}
1180
1181/*
1182 * After changing the page size for the specified virtual address in the page

Callers 6

pmap_update_pdeFunction · 0.85
__CONCAT(PMTYPE, map)Function · 0.85
pmap_demote_pdeFunction · 0.85
pmap_remove_kernel_pdeFunction · 0.85
pmap_promote_pdeFunction · 0.85

Calls 1

pmap_pdeFunction · 0.50

Tested by

no test coverage detected