test/telemetry: fix typo at beginning of line
[dpdk.git] / lib / librte_ethdev / rte_eth_ctrl.h
index 9d573f3..1cca522 100644 (file)
 extern "C" {
 #endif
 
-/**
- * Feature filter types
- */
-enum rte_filter_type {
-       RTE_ETH_FILTER_NONE = 0,
-       RTE_ETH_FILTER_ETHERTYPE,
-       RTE_ETH_FILTER_FLEXIBLE,
-       RTE_ETH_FILTER_SYN,
-       RTE_ETH_FILTER_NTUPLE,
-       RTE_ETH_FILTER_TUNNEL,
-       RTE_ETH_FILTER_FDIR,
-       RTE_ETH_FILTER_HASH,
-       RTE_ETH_FILTER_L2_TUNNEL,
-       RTE_ETH_FILTER_GENERIC,
-       RTE_ETH_FILTER_MAX
-};
-
-/**
- * Generic operations on filters
- */
-enum rte_filter_op {
-       /** used to check whether the type filter is supported */
-       RTE_ETH_FILTER_NOP = 0,
-       RTE_ETH_FILTER_ADD,      /**< add filter entry */
-       RTE_ETH_FILTER_UPDATE,   /**< update filter entry */
-       RTE_ETH_FILTER_DELETE,   /**< delete filter entry */
-       RTE_ETH_FILTER_FLUSH,    /**< flush all entries */
-       RTE_ETH_FILTER_GET,      /**< get filter entry */
-       RTE_ETH_FILTER_SET,      /**< configurations */
-       RTE_ETH_FILTER_INFO,     /**< retrieve information */
-       RTE_ETH_FILTER_STATS,    /**< retrieve statistics */
-       RTE_ETH_FILTER_OP_MAX
-};
-
 /**
  * Define all structures for ntuple Filter type.
  */
@@ -372,9 +338,7 @@ struct rte_eth_fdir_action {
 };
 
 /**
- * A structure used to define the flow director filter entry by filter_ctrl API
- * It supports RTE_ETH_FILTER_FDIR with RTE_ETH_FILTER_ADD and
- * RTE_ETH_FILTER_DELETE operations.
+ * A structure used to define the flow director filter entry by filter_ctrl API.
  */
 struct rte_eth_fdir_filter {
        uint32_t soft_id;
@@ -522,40 +486,6 @@ struct rte_eth_fdir_stats {
        uint32_t best_cnt;     /**< Number of filters in best effort spaces. */
 };
 
-/**
- * Flow Director filter information types.
- */
-enum rte_eth_fdir_filter_info_type {
-       RTE_ETH_FDIR_FILTER_INFO_TYPE_UNKNOWN = 0,
-       /** Flow Director filter input set configuration */
-       RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT,
-       RTE_ETH_FDIR_FILTER_INFO_TYPE_MAX,
-};
-
-/**
- * A structure used to set FDIR filter information, to support filter type
- * of 'RTE_ETH_FILTER_FDIR' RTE_ETH_FDIR_FILTER_INPUT_SET_SELECT operation.
- */
-struct rte_eth_fdir_filter_info {
-       enum rte_eth_fdir_filter_info_type info_type; /**< Information type */
-       /** Details of fdir filter information */
-       union {
-               /** Flow Director input set configuration per port */
-               struct rte_eth_input_set_conf input_set_conf;
-       } info;
-};
-
-/**
- * l2 tunnel configuration.
- */
-struct rte_eth_l2_tunnel_conf {
-       enum rte_eth_tunnel_type l2_tunnel_type;
-       uint16_t ether_type; /* ether type in l2 header */
-       uint32_t tunnel_id; /* port tag id for e-tag */
-       uint16_t vf_id; /* VF id for tag insertion */
-       uint32_t pool; /* destination pool for tag based forwarding */
-};
-
 #ifdef __cplusplus
 }
 #endif