* vm_page_queue: * * Return the index of the queue containing m. */
| 917 | * Return the index of the queue containing m. |
| 918 | */ |
| 919 | static inline uint8_t |
| 920 | vm_page_queue(vm_page_t m) |
| 921 | { |
| 922 | |
| 923 | return (_vm_page_queue(vm_page_astate_load(m))); |
| 924 | } |
| 925 | |
| 926 | static inline bool |
| 927 | vm_page_active(vm_page_t m) |
no test coverage detected