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

Function pmap_update_pde_kernel

freebsd/i386/i386/pmap.c:1330–1340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1328};
1329
1330static void
1331pmap_update_pde_kernel(void *arg)
1332{
1333 struct pde_action *act = arg;
1334 pd_entry_t *pde;
1335
1336 if (act->store == PCPU_GET(cpuid)) {
1337 pde = pmap_pde(kernel_pmap, act->va);
1338 pde_store(pde, act->newpde);
1339 }
1340}
1341
1342static void
1343pmap_update_pde_user(void *arg)

Callers

nothing calls this directly

Calls 1

pmap_pdeFunction · 0.50

Tested by

no test coverage detected