| 368 | } |
| 369 | |
| 370 | static inline vm_page_t |
| 371 | vm_batchqueue_pop(struct vm_batchqueue *bq) |
| 372 | { |
| 373 | |
| 374 | if (bq->bq_cnt == 0) |
| 375 | return (NULL); |
| 376 | return (bq->bq_pa[--bq->bq_cnt]); |
| 377 | } |
| 378 | |
| 379 | void vm_domain_set(struct vm_domain *vmd); |
| 380 | void vm_domain_clear(struct vm_domain *vmd); |
no outgoing calls
no test coverage detected