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

Function pmap_clear_pt2

freebsd/arm/arm/pmap-v6.c:3555–3563  ·  view source on GitHub ↗

* Zero L2 page table page. */

Source from the content-addressed store, hash-verified

3553 * Zero L2 page table page.
3554 */
3555static __inline void
3556pmap_clear_pt2(pt2_entry_t *fpte2p)
3557{
3558 pt2_entry_t *pte2p;
3559
3560 for (pte2p = fpte2p; pte2p < fpte2p + NPTE2_IN_PT2; pte2p++)
3561 pte2_clear(pte2p);
3562
3563}
3564
3565/*
3566 * Removes a 1MB page mapping from the kernel pmap.

Callers 1

pmap_remove_kernel_pte1Function · 0.85

Calls 1

pte2_clearFunction · 0.85

Tested by

no test coverage detected