| 1036 | } |
| 1037 | |
| 1038 | int |
| 1039 | ff_veth_detach(void *arg) |
| 1040 | { |
| 1041 | struct ff_veth_softc *sc = (struct ff_veth_softc *)arg; |
| 1042 | if (sc) { |
| 1043 | ff_dpdk_deregister_if(sc->host_ctx); |
| 1044 | free(sc, M_DEVBUF); |
| 1045 | } |
| 1046 | |
| 1047 | return (0); |
| 1048 | } |
| 1049 | |
| 1050 | void * |
| 1051 | ff_veth_softc_to_hostc(void *softc) |
nothing calls this directly
no test coverage detected