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

Function uma_small_free

freebsd/mips/mips/uma_machdep.c:82–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void
83uma_small_free(void *mem, vm_size_t size, u_int8_t flags)
84{
85 vm_page_t m;
86 vm_paddr_t pa;
87
88 pa = MIPS_DIRECT_TO_PHYS((vm_offset_t)mem);
89 dump_drop_page(pa);
90 m = PHYS_TO_VM_PAGE(pa);
91 vm_page_unwire_noq(m);
92 vm_page_free(m);
93}

Callers

nothing calls this directly

Calls 4

dump_drop_pageFunction · 0.85
PHYS_TO_VM_PAGEFunction · 0.85
vm_page_unwire_noqFunction · 0.85
vm_page_freeFunction · 0.85

Tested by

no test coverage detected