1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright(c) 2018-2019 Hisilicon Limited. 3 */ 4 5 #ifndef _HNS3_MP_H_ 6 #define _HNS3_MP_H_ 7 8 void hns3_mp_req_start_rxtx(struct rte_eth_dev *dev); 9 void hns3_mp_req_stop_rxtx(struct rte_eth_dev *dev); 10 int hns3_mp_init_primary(void); 11 void hns3_mp_uninit_primary(void); 12 int hns3_mp_init_secondary(void); 13 14 #endif /* _HNS3_MP_H_ */ 15