| 3543 | } |
| 3544 | |
| 3545 | static int |
| 3546 | vxlan_tunable_int(struct vxlan_softc *sc, const char *knob, int def) |
| 3547 | { |
| 3548 | char path[64]; |
| 3549 | |
| 3550 | snprintf(path, sizeof(path), "net.link.vxlan.%d.%s", |
| 3551 | sc->vxl_unit, knob); |
| 3552 | TUNABLE_INT_FETCH(path, &def); |
| 3553 | |
| 3554 | return (def); |
| 3555 | } |
| 3556 | |
| 3557 | static void |
| 3558 | vxlan_ifdetach_event(void *arg __unused, struct ifnet *ifp) |
no test coverage detected