| 742 | } |
| 743 | |
| 744 | static struct vxlan_ftable_entry * |
| 745 | vxlan_ftable_entry_alloc(void) |
| 746 | { |
| 747 | struct vxlan_ftable_entry *fe; |
| 748 | |
| 749 | fe = malloc(sizeof(*fe), M_VXLAN, M_ZERO | M_NOWAIT); |
| 750 | |
| 751 | return (fe); |
| 752 | } |
| 753 | |
| 754 | static void |
| 755 | vxlan_ftable_entry_free(struct vxlan_ftable_entry *fe) |
no test coverage detected