numam-dpdk/drivers/net/mvpp2/mrvl_flow.h
Tomasz Duszynski a1f83becf9 net/mvpp2: add init and deinit to flow
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>
2018-09-28 01:41:03 +02:00

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_ */