| 332 | mtx_unlock(vm_domain_pageout_lockptr((d))) |
| 333 | |
| 334 | static __inline void |
| 335 | vm_pagequeue_cnt_add(struct vm_pagequeue *pq, int addend) |
| 336 | { |
| 337 | |
| 338 | vm_pagequeue_assert_locked(pq); |
| 339 | pq->pq_cnt += addend; |
| 340 | } |
| 341 | #define vm_pagequeue_cnt_inc(pq) vm_pagequeue_cnt_add((pq), 1) |
| 342 | #define vm_pagequeue_cnt_dec(pq) vm_pagequeue_cnt_add((pq), -1) |
| 343 |
no outgoing calls
no test coverage detected