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

Function pmap_kremove

freebsd/amd64/amd64/pmap.c:3814–3821  ·  view source on GitHub ↗

* Remove a page from the kernel pagetables. * Note: not SMP coherent. */

Source from the content-addressed store, hash-verified

3812 * Note: not SMP coherent.
3813 */
3814PMAP_INLINE void
3815pmap_kremove(vm_offset_t va)
3816{
3817 pt_entry_t *pte;
3818
3819 pte = vtopte(va);
3820 pte_clear(pte);
3821}
3822
3823/*
3824 * Used to map a range of physical addresses into kernel

Callers 1

pmap_qremoveFunction · 0.70

Calls 1

vtopteFunction · 0.85

Tested by

no test coverage detected