| 577 | } |
| 578 | |
| 579 | void |
| 580 | in6_gre_uninit(void) |
| 581 | { |
| 582 | |
| 583 | if (IS_DEFAULT_VNET(curvnet)) { |
| 584 | ip6_encap_detach(ecookie); |
| 585 | ip6_encap_unregister_srcaddr(ipv6_srcaddrtab); |
| 586 | } |
| 587 | if (V_ipv6_hashtbl != NULL) { |
| 588 | gre_hashdestroy(V_ipv6_hashtbl); |
| 589 | V_ipv6_hashtbl = NULL; |
| 590 | GRE_WAIT(); |
| 591 | gre_hashdestroy(V_ipv6_srchashtbl); |
| 592 | gre_hashdestroy((struct gre_list *)V_ipv6_sockets); |
| 593 | } |
| 594 | } |
no test coverage detected