DPDK 21.11.9
rte_flow_driver.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2016 6WIND S.A.
3 * Copyright 2016 Mellanox Technologies, Ltd
4 */
5
6#ifndef RTE_FLOW_DRIVER_H_
7#define RTE_FLOW_DRIVER_H_
8
18#include <stdint.h>
19
20#include "rte_ethdev.h"
21#include "ethdev_driver.h"
22#include "rte_flow.h"
23
24#ifdef __cplusplus
25extern "C" {
26#endif
27
41 int (*validate)
42 (struct rte_eth_dev *,
43 const struct rte_flow_attr *,
44 const struct rte_flow_item [],
45 const struct rte_flow_action [],
46 struct rte_flow_error *);
48 struct rte_flow *(*create)
49 (struct rte_eth_dev *,
50 const struct rte_flow_attr *,
51 const struct rte_flow_item [],
52 const struct rte_flow_action [],
53 struct rte_flow_error *);
55 int (*destroy)
56 (struct rte_eth_dev *,
57 struct rte_flow *,
58 struct rte_flow_error *);
60 int (*flush)
61 (struct rte_eth_dev *,
62 struct rte_flow_error *);
64 int (*query)
65 (struct rte_eth_dev *,
66 struct rte_flow *,
67 const struct rte_flow_action *,
68 void *,
69 struct rte_flow_error *);
71 int (*isolate)
72 (struct rte_eth_dev *,
73 int,
74 struct rte_flow_error *);
76 int (*dev_dump)
77 (struct rte_eth_dev *dev,
78 struct rte_flow *flow,
79 FILE *file,
80 struct rte_flow_error *error);
83 (struct rte_eth_dev *dev,
84 void **context,
85 uint32_t nb_contexts,
86 struct rte_flow_error *err);
88 struct rte_flow_action_handle *(*action_handle_create)
89 (struct rte_eth_dev *dev,
90 const struct rte_flow_indir_action_conf *conf,
91 const struct rte_flow_action *action,
92 struct rte_flow_error *error);
95 (struct rte_eth_dev *dev,
96 struct rte_flow_action_handle *handle,
97 struct rte_flow_error *error);
100 (struct rte_eth_dev *dev,
101 struct rte_flow_action_handle *handle,
102 const void *update,
103 struct rte_flow_error *error);
106 (struct rte_eth_dev *dev,
107 const struct rte_flow_action_handle *handle,
108 void *data,
109 struct rte_flow_error *error);
112 (struct rte_eth_dev *dev,
113 struct rte_flow_tunnel *tunnel,
114 struct rte_flow_action **pmd_actions,
115 uint32_t *num_of_actions,
116 struct rte_flow_error *err);
119 (struct rte_eth_dev *dev,
120 struct rte_flow_tunnel *tunnel,
121 struct rte_flow_item **pmd_items,
122 uint32_t *num_of_items,
123 struct rte_flow_error *err);
126 (struct rte_eth_dev *dev,
127 struct rte_mbuf *m,
128 struct rte_flow_restore_info *info,
129 struct rte_flow_error *err);
132 (struct rte_eth_dev *dev,
133 struct rte_flow_action *pmd_actions,
134 uint32_t num_of_actions,
135 struct rte_flow_error *err);
138 (struct rte_eth_dev *dev,
139 struct rte_flow_item *pmd_items,
140 uint32_t num_of_items,
141 struct rte_flow_error *err);
144 (struct rte_eth_dev *dev,
145 uint16_t *proxy_port_id,
146 struct rte_flow_error *error);
147 struct rte_flow_item_flex_handle *(*flex_item_create)
148 (struct rte_eth_dev *dev,
149 const struct rte_flow_item_flex_conf *conf,
150 struct rte_flow_error *error);
151 int (*flex_item_release)
152 (struct rte_eth_dev *dev,
153 const struct rte_flow_item_flex_handle *handle,
154 struct rte_flow_error *error);
155};
156
170const struct rte_flow_ops *
171rte_flow_ops_get(uint16_t port_id, struct rte_flow_error *error);
172
173#ifdef __cplusplus
174}
175#endif
176
177#endif /* RTE_FLOW_DRIVER_H_ */
const struct rte_flow_ops * rte_flow_ops_get(uint16_t port_id, struct rte_flow_error *error)
int(* get_aged_flows)(struct rte_eth_dev *dev, void **context, uint32_t nb_contexts, struct rte_flow_error *err)
int(* tunnel_action_decap_release)(struct rte_eth_dev *dev, struct rte_flow_action *pmd_actions, uint32_t num_of_actions, struct rte_flow_error *err)
int(* action_handle_query)(struct rte_eth_dev *dev, const struct rte_flow_action_handle *handle, void *data, struct rte_flow_error *error)
int(* tunnel_match)(struct rte_eth_dev *dev, struct rte_flow_tunnel *tunnel, struct rte_flow_item **pmd_items, uint32_t *num_of_items, struct rte_flow_error *err)
int(* tunnel_item_release)(struct rte_eth_dev *dev, struct rte_flow_item *pmd_items, uint32_t num_of_items, struct rte_flow_error *err)
int(* get_restore_info)(struct rte_eth_dev *dev, struct rte_mbuf *m, struct rte_flow_restore_info *info, struct rte_flow_error *err)
int(* tunnel_decap_set)(struct rte_eth_dev *dev, struct rte_flow_tunnel *tunnel, struct rte_flow_action **pmd_actions, uint32_t *num_of_actions, struct rte_flow_error *err)
int(* validate)(struct rte_eth_dev *, const struct rte_flow_attr *, const struct rte_flow_item[], const struct rte_flow_action[], struct rte_flow_error *)
int(* pick_transfer_proxy)(struct rte_eth_dev *dev, uint16_t *proxy_port_id, struct rte_flow_error *error)
int(* action_handle_destroy)(struct rte_eth_dev *dev, struct rte_flow_action_handle *handle, struct rte_flow_error *error)
int(* query)(struct rte_eth_dev *, struct rte_flow *, const struct rte_flow_action *, void *, struct rte_flow_error *)
int(* flush)(struct rte_eth_dev *, struct rte_flow_error *)
int(* destroy)(struct rte_eth_dev *, struct rte_flow *, struct rte_flow_error *)
int(* isolate)(struct rte_eth_dev *, int, struct rte_flow_error *)
int(* dev_dump)(struct rte_eth_dev *dev, struct rte_flow *flow, FILE *file, struct rte_flow_error *error)
int(* action_handle_update)(struct rte_eth_dev *dev, struct rte_flow_action_handle *handle, const void *update, struct rte_flow_error *error)