* vm_pagequeue_domain: * * Return the memory domain the page belongs to. */
| 386 | * Return the memory domain the page belongs to. |
| 387 | */ |
| 388 | static inline struct vm_domain * |
| 389 | vm_pagequeue_domain(vm_page_t m) |
| 390 | { |
| 391 | |
| 392 | return (VM_DOMAIN(vm_page_domain(m))); |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | * Return the number of pages we need to free-up or cache |
no test coverage detected