| 525 | } |
| 526 | |
| 527 | static void |
| 528 | bucket_zone_drain(void) |
| 529 | { |
| 530 | struct uma_bucket_zone *ubz; |
| 531 | |
| 532 | for (ubz = &bucket_zones[0]; ubz->ubz_entries != 0; ubz++) |
| 533 | uma_zone_reclaim(ubz->ubz_zone, UMA_RECLAIM_DRAIN); |
| 534 | } |
| 535 | |
| 536 | /* |
| 537 | * Acquire the domain lock and record contention. |
no test coverage detected