| 2131 | } |
| 2132 | |
| 2133 | int |
| 2134 | rte_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 | |
| 2151 | int |
| 2152 | rte_flow_pull(uint16_t port_id, |
no test coverage detected