forked from Qortal/Brooklyn
b73fb8b536
* Try that punk NASA -_-
21 lines
605 B
C
21 lines
605 B
C
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
|
/* Copyright (c) 2019-2020 Marvell International Ltd. All rights reserved. */
|
|
|
|
#ifndef _PRESTERA_SPAN_H_
|
|
#define _PRESTERA_SPAN_H_
|
|
|
|
#include <net/pkt_cls.h>
|
|
|
|
#define PRESTERA_SPAN_INVALID_ID -1
|
|
|
|
struct prestera_switch;
|
|
struct prestera_flow_block;
|
|
|
|
int prestera_span_init(struct prestera_switch *sw);
|
|
void prestera_span_fini(struct prestera_switch *sw);
|
|
int prestera_span_replace(struct prestera_flow_block *block,
|
|
struct tc_cls_matchall_offload *f);
|
|
void prestera_span_destroy(struct prestera_flow_block *block);
|
|
|
|
#endif /* _PRESTERA_SPAN_H_ */
|