MCPcopy Create free account
hub / github.com/F-Stack/f-stack / sfc_flow_fini

Function sfc_flow_fini

dpdk/drivers/net/sfc/sfc_flow.c:2963–2978  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2961}
2962
2963void
2964sfc_flow_fini(struct sfc_adapter *sa)
2965{
2966 struct rte_flow *flow;
2967 void *tmp;
2968
2969 SFC_ASSERT(sfc_adapter_is_locked(sa));
2970
2971 RTE_TAILQ_FOREACH_SAFE(flow, &sa->flow_list, entries, tmp) {
2972 if (flow->internal)
2973 continue;
2974
2975 TAILQ_REMOVE(&sa->flow_list, flow, entries);
2976 sfc_flow_free(sa, flow);
2977 }
2978}
2979
2980void
2981sfc_flow_stop(struct sfc_adapter *sa)

Callers 3

sfc_attachFunction · 0.85
sfc_detachFunction · 0.85
sfc_unprobeFunction · 0.85

Calls 1

sfc_flow_freeFunction · 0.85

Tested by

no test coverage detected