| 1722 | } |
| 1723 | |
| 1724 | static void |
| 1725 | intr_map_init(void *dummy __unused) |
| 1726 | { |
| 1727 | |
| 1728 | mtx_init(&irq_map_lock, "intr map table", NULL, MTX_DEF); |
| 1729 | |
| 1730 | irq_map_count = 2 * intr_nirq; |
| 1731 | irq_map = mallocarray(irq_map_count, sizeof(struct intr_map_entry*), |
| 1732 | M_INTRNG, M_WAITOK | M_ZERO); |
| 1733 | } |
| 1734 | SYSINIT(intr_map_init, SI_SUB_INTR, SI_ORDER_FIRST, intr_map_init, NULL); |
nothing calls this directly
no test coverage detected