0a5409b6ea8682c562935e81f7e45d60b41a443d
[dpdk.git] / drivers / net / softnic / rte_eth_softnic_meter.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2018 Intel Corporation
3  */
4
5 #include <stdint.h>
6 #include <stdlib.h>
7 #include <string.h>
8
9 #include <rte_mtr.h>
10 #include <rte_mtr_driver.h>
11
12 #include "rte_eth_softnic_internals.h"
13
14 const struct rte_mtr_ops pmd_mtr_ops = {
15         .capabilities_get = NULL,
16
17         .meter_profile_add = NULL,
18         .meter_profile_delete = NULL,
19
20         .create = NULL,
21         .destroy = NULL,
22         .meter_enable = NULL,
23         .meter_disable = NULL,
24
25         .meter_profile_update = NULL,
26         .meter_dscp_table_update = NULL,
27         .policer_actions_update = NULL,
28         .stats_update = NULL,
29
30         .stats_read = NULL,
31 };