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

Function tap_flow_validate

dpdk/drivers/net/tap/tap_flow.c:1280–1290  ·  view source on GitHub ↗

* Validate a flow. * * @see rte_flow_validate() * @see rte_flow_ops */

Source from the content-addressed store, hash-verified

1278 * @see rte_flow_ops
1279 */
1280static int
1281tap_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.

Callers

nothing calls this directly

Calls 1

priv_flow_processFunction · 0.85

Tested by

no test coverage detected