mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-02 11:54:36 +08:00
13defa275e
- Introduce matchall filter support - Add SPAN API to configure port mirroring. - Add tc mirror action. At this moment, only mirror (egress) action is supported. Example: tc filter ... action mirred egress mirror dev DEV Co-developed-by: Volodymyr Mytnyk <vmytnyk@marvell.com> Signed-off-by: Volodymyr Mytnyk <vmytnyk@marvell.com> Signed-off-by: Serhiy Boiko <serhiy.boiko@plvision.eu> Signed-off-by: Vadym Kochan <vkochan@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
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_ */
|