a1f83becf9
Add init and deinit functionality to flow implementation. Init puts structures used by flow in a sane sate. Deinit deallocates all resources used by flow. Signed-off-by: Tomasz Duszynski <tdu@semihalf.com> Signed-off-by: Natalie Samsonov <nsamsono@marvell.com> Reviewed-by: Liron Himi <lironh@marvell.com> Reviewed-by: Shlomi Gridish <sgridish@marvell.com>
16 lines
342 B
C
16 lines
342 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2018 Marvell International Ltd.
|
|
* Copyright(c) 2018 Semihalf.
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef _MRVL_FLOW_H_
|
|
#define _MRVL_FLOW_H_
|
|
|
|
#include "mrvl_ethdev.h"
|
|
|
|
void mrvl_flow_init(struct rte_eth_dev *dev);
|
|
void mrvl_flow_deinit(struct rte_eth_dev *dev);
|
|
|
|
#endif /* _MRVL_FLOW_H_ */
|