| 3155 | } |
| 3156 | |
| 3157 | static void |
| 3158 | vnet_netgraph_init(const void *unused __unused) |
| 3159 | { |
| 3160 | |
| 3161 | /* We start with small hashes, but they can grow. */ |
| 3162 | V_ng_ID_hash = hashinit(16, M_NETGRAPH_NODE, &V_ng_ID_hmask); |
| 3163 | V_ng_name_hash = hashinit(16, M_NETGRAPH_NODE, &V_ng_name_hmask); |
| 3164 | } |
| 3165 | VNET_SYSINIT(vnet_netgraph_init, SI_SUB_NETGRAPH, SI_ORDER_FIRST, |
| 3166 | vnet_netgraph_init, NULL); |
| 3167 |
nothing calls this directly
no test coverage detected