* This routine checks to see whether or not it's safe to enable buckets. */
| 395 | * This routine checks to see whether or not it's safe to enable buckets. |
| 396 | */ |
| 397 | static void |
| 398 | bucket_enable(void) |
| 399 | { |
| 400 | |
| 401 | KASSERT(booted >= BOOT_KVA, ("Bucket enable before init")); |
| 402 | bucketdisable = vm_page_count_min(); |
| 403 | } |
| 404 | |
| 405 | /* |
| 406 | * Initialize bucket_zones, the array of zones of buckets of various sizes. |
no test coverage detected