| 955 | } |
| 956 | |
| 957 | static void |
| 958 | vxlan_socket_insert(struct vxlan_socket *vso) |
| 959 | { |
| 960 | |
| 961 | VXLAN_LIST_LOCK(); |
| 962 | VXLAN_SO_ACQUIRE(vso); |
| 963 | LIST_INSERT_HEAD(&vxlan_socket_list, vso, vxlso_entry); |
| 964 | VXLAN_LIST_UNLOCK(); |
| 965 | } |
| 966 | |
| 967 | static int |
| 968 | vxlan_socket_init(struct vxlan_socket *vso, struct ifnet *ifp) |
no outgoing calls
no test coverage detected