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

Function vm_freelist_rem

freebsd/vm/vm_phys.c:385–392  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

383}
384
385static void
386vm_freelist_rem(struct vm_freelist *fl, vm_page_t m, int order)
387{
388
389 TAILQ_REMOVE(&fl[order].pl, m, listq);
390 fl[order].lcnt--;
391 m->order = VM_NFREEORDER;
392}
393
394/*
395 * Create a physical memory segment.

Callers 5

vm_phys_alloc_npagesFunction · 0.85
vm_phys_free_pagesFunction · 0.85
vm_phys_unfree_pageFunction · 0.85
vm_phys_alloc_seg_contigFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected