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

Function pmap_pte2list_init

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

Source from the content-addressed store, hash-verified

1527}
1528
1529static void
1530pmap_pte2list_init(vm_offset_t *head, void *base, int npages)
1531{
1532 int i;
1533 vm_offset_t va;
1534
1535 *head = 0;
1536 for (i = npages - 1; i >= 0; i--) {
1537 va = (vm_offset_t)base + i * PAGE_SIZE;
1538 pmap_pte2list_free(head, va);
1539 }
1540}
1541
1542/*****************************************************************************
1543 *

Callers 1

pmap_initFunction · 0.85

Calls 1

pmap_pte2list_freeFunction · 0.85

Tested by

no test coverage detected