| 383 | } |
| 384 | |
| 385 | static void |
| 386 | vm_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. |
no outgoing calls
no test coverage detected