| 400 | } |
| 401 | |
| 402 | static void |
| 403 | linker_init_kernel_modules(void) |
| 404 | { |
| 405 | |
| 406 | sx_xlock(&kld_sx); |
| 407 | linker_file_register_modules(linker_kernel_file); |
| 408 | sx_xunlock(&kld_sx); |
| 409 | } |
| 410 | |
| 411 | SYSINIT(linker_kernel, SI_SUB_KLD, SI_ORDER_ANY, linker_init_kernel_modules, |
| 412 | NULL); |
nothing calls this directly
no test coverage detected