* Set the pool for a contiguous, power of two-sized set of physical pages. */
| 1277 | * Set the pool for a contiguous, power of two-sized set of physical pages. |
| 1278 | */ |
| 1279 | void |
| 1280 | vm_phys_set_pool(int pool, vm_page_t m, int order) |
| 1281 | { |
| 1282 | vm_page_t m_tmp; |
| 1283 | |
| 1284 | for (m_tmp = m; m_tmp < &m[1 << order]; m_tmp++) |
| 1285 | m_tmp->pool = pool; |
| 1286 | } |
| 1287 | |
| 1288 | /* |
| 1289 | * Search for the given physical page "m" in the free lists. If the search |
no outgoing calls
no test coverage detected