ARGSUSED*/
| 242 | |
| 243 | /* ARGSUSED*/ |
| 244 | static void |
| 245 | domaininit(void *dummy) |
| 246 | { |
| 247 | |
| 248 | if (max_linkhdr < 16) /* XXX */ |
| 249 | max_linkhdr = 16; |
| 250 | |
| 251 | callout_init(&pffast_callout, 1); |
| 252 | callout_init(&pfslow_callout, 1); |
| 253 | |
| 254 | mtx_lock(&dom_mtx); |
| 255 | KASSERT(domain_init_status == 0, ("domaininit called too late!")); |
| 256 | domain_init_status = 1; |
| 257 | mtx_unlock(&dom_mtx); |
| 258 | } |
| 259 | |
| 260 | /* ARGSUSED*/ |
| 261 | static void |
nothing calls this directly
no test coverage detected