New upstream version 18.11-rc1
[deb_dpdk.git] / lib / librte_ethdev / ethdev_profile.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4
5 #ifndef _RTE_ETHDEV_PROFILE_H_
6 #define _RTE_ETHDEV_PROFILE_H_
7
8 #include "rte_ethdev.h"
9
10 /**
11  * Initialization of the Ethernet device profiling.
12  * Implementation of this function depends on chosen profiling method,
13  * defined in configs.
14  *
15  * @param port_id
16  *  The port identifier of the Ethernet device.
17  * @param dev
18  *  Pointer to struct rte_eth_dev corresponding to given port_id.
19  *
20  * @return
21  *  - On success, zero.
22  *  - On failure, a negative value.
23  */
24 int
25 __rte_eth_dev_profile_init(uint16_t port_id, struct rte_eth_dev *dev);
26
27 #endif