| 770 | } |
| 771 | |
| 772 | static void |
| 773 | vxlan_ftable_entry_destroy(struct vxlan_softc *sc, |
| 774 | struct vxlan_ftable_entry *fe) |
| 775 | { |
| 776 | |
| 777 | sc->vxl_ftable_cnt--; |
| 778 | LIST_REMOVE(fe, vxlfe_hash); |
| 779 | vxlan_ftable_entry_free(fe); |
| 780 | } |
| 781 | |
| 782 | static int |
| 783 | vxlan_ftable_entry_insert(struct vxlan_softc *sc, |
no test coverage detected