2019-06-25 11:12:58 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
2017-04-21 10:43:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INIT_H_
|
|
|
|
#define _INIT_H_
|
|
|
|
|
2018-05-15 09:49:22 +00:00
|
|
|
void configure_eth_port(uint16_t port_id);
|
2017-04-21 10:43:26 +00:00
|
|
|
void init_dpdk(void);
|
2018-05-15 09:49:22 +00:00
|
|
|
void init_ring(int lcore_id, uint16_t port_id);
|
2017-04-21 10:43:26 +00:00
|
|
|
void pair_ports(void);
|
|
|
|
void setup_shared_variables(void);
|
|
|
|
|
|
|
|
#endif /* _INIT_H_ */
|