* Validate a flow. * * @see rte_flow_validate() * @see rte_flow_ops */
| 1278 | * @see rte_flow_ops |
| 1279 | */ |
| 1280 | static int |
| 1281 | tap_flow_validate(struct rte_eth_dev *dev, |
| 1282 | const struct rte_flow_attr *attr, |
| 1283 | const struct rte_flow_item items[], |
| 1284 | const struct rte_flow_action actions[], |
| 1285 | struct rte_flow_error *error) |
| 1286 | { |
| 1287 | struct pmd_internals *pmd = dev->data->dev_private; |
| 1288 | |
| 1289 | return priv_flow_process(pmd, attr, items, actions, error, NULL, 0); |
| 1290 | } |
| 1291 | |
| 1292 | /** |
| 1293 | * Set a unique handle in a flow. |
nothing calls this directly
no test coverage detected