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

Function rte_flow_push

dpdk/lib/ethdev/rte_flow.c:2133–2149  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2131}
2132
2133int
2134rte_flow_push(uint16_t port_id,
2135 uint32_t queue_id,
2136 struct rte_flow_error *error)
2137{
2138 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2139 const struct rte_flow_ops *ops = rte_flow_ops_get(port_id, error);
2140 int ret;
2141
2142 ret = flow_err(port_id,
2143 ops->push(dev, queue_id, error),
2144 error);
2145
2146 rte_flow_trace_push(port_id, queue_id, ret);
2147
2148 return ret;
2149}
2150
2151int
2152rte_flow_pull(uint16_t port_id,

Callers 2

port_queue_flow_pushFunction · 0.85

Calls 2

rte_flow_ops_getFunction · 0.85
flow_errFunction · 0.85

Tested by

no test coverage detected