| 577 | } |
| 578 | |
| 579 | void |
| 580 | in_gre_uninit(void) |
| 581 | { |
| 582 | |
| 583 | if (IS_DEFAULT_VNET(curvnet)) { |
| 584 | ip_encap_detach(ecookie); |
| 585 | ip_encap_unregister_srcaddr(ipv4_srcaddrtab); |
| 586 | } |
| 587 | if (V_ipv4_hashtbl != NULL) { |
| 588 | gre_hashdestroy(V_ipv4_hashtbl); |
| 589 | V_ipv4_hashtbl = NULL; |
| 590 | GRE_WAIT(); |
| 591 | gre_hashdestroy(V_ipv4_srchashtbl); |
| 592 | gre_hashdestroy((struct gre_list *)V_ipv4_sockets); |
| 593 | } |
| 594 | } |
no test coverage detected