* Routine called by timeout which is used to fire off some time interval * based calculations. (stats, hash size, etc.) * * Arguments: * arg Unused * * Returns: * Nothing */
| 939 | * Nothing |
| 940 | */ |
| 941 | static void |
| 942 | uma_timeout(void *unused) |
| 943 | { |
| 944 | bucket_enable(); |
| 945 | zone_foreach(zone_timeout, NULL); |
| 946 | |
| 947 | /* Reschedule this event */ |
| 948 | callout_reset(&uma_callout, UMA_TIMEOUT * hz, uma_timeout, NULL); |
| 949 | } |
| 950 | |
| 951 | /* |
| 952 | * Update the working set size estimate for the zone's bucket cache. |
nothing calls this directly
no test coverage detected