DPDK  21.08.0
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
25 extern "C" {
26 #endif
27 
39 struct rte_flow_ops {
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);
82  int (*get_aged_flows)
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);
105  int (*action_handle_query)
106  (struct rte_eth_dev *dev,
107  const struct rte_flow_action_handle *handle,
108  void *data,
109  struct rte_flow_error *error);
111  int (*tunnel_decap_set)
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);
118  int (*tunnel_match)
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);
125  int (*get_restore_info)
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);
137  int (*tunnel_item_release)
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);
142 };
143 
157 const struct rte_flow_ops *
158 rte_flow_ops_get(uint16_t port_id, struct rte_flow_error *error);
159 
160 #ifdef __cplusplus
161 }
162 #endif
163 
164 #endif /* RTE_FLOW_DRIVER_H_ */
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(* 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(* query)(struct rte_eth_dev *, struct rte_flow *, const struct rte_flow_action *, void *, struct rte_flow_error *)
int(* action_handle_query)(struct rte_eth_dev *dev, const struct rte_flow_action_handle *handle, void *data, struct rte_flow_error *error)
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(* get_aged_flows)(struct rte_eth_dev *dev, void **context, uint32_t nb_contexts, struct rte_flow_error *err)
int(* action_handle_destroy)(struct rte_eth_dev *dev, struct rte_flow_action_handle *handle, struct rte_flow_error *error)
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(* 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_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(* isolate)(struct rte_eth_dev *, int, struct rte_flow_error *)
int(* flush)(struct rte_eth_dev *, struct rte_flow_error *)
int(* dev_dump)(struct rte_eth_dev *dev, struct rte_flow *flow, FILE *file, struct rte_flow_error *error)
int(* destroy)(struct rte_eth_dev *, struct rte_flow *, struct rte_flow_error *)
int(* action_handle_update)(struct rte_eth_dev *dev, struct rte_flow_action_handle *handle, const void *update, struct rte_flow_error *error)
const struct rte_flow_ops * rte_flow_ops_get(uint16_t port_id, struct rte_flow_error *error)