mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 08:43:31 +00:00

matchall rules can be added only to chain 0 and their priorities have limitations: - new matchall ingress rule's priority must be higher (lower value) than any existing flower rule; - new matchall egress rule's priority must be lower (higher value) than any existing flower rule. The opposite works for flower rule adding: - new flower ingress rule's priority must be lower (higher value) than any existing matchall rule; - new flower egress rule's priority must be higher (lower value) than any existing matchall rule. This is a hardware limitation and thus must be properly handled in driver by reporting errors to the user when newly added rule has such a priority that cannot be installed into the hardware. To achieve this, the driver must maintain both min/max matchall priorities for every flower block when user adds/deletes a matchall rule, as well as both min/max flower priorities for chain 0 for every adding/deletion of flower rules for chain 0. Cc: Serhiy Boiko <serhiy.boiko@plvision.eu> Signed-off-by: Maksym Glubokiy <maksym.glubokiy@plvision.eu> Signed-off-by: David S. Miller <davem@davemloft.net>
25 lines
977 B
C
25 lines
977 B
C
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
|
/* Copyright (c) 2020-2021 Marvell International Ltd. All rights reserved. */
|
|
|
|
#ifndef _PRESTERA_FLOWER_H_
|
|
#define _PRESTERA_FLOWER_H_
|
|
|
|
#include <net/pkt_cls.h>
|
|
|
|
struct prestera_flow_block;
|
|
|
|
int prestera_flower_replace(struct prestera_flow_block *block,
|
|
struct flow_cls_offload *f);
|
|
void prestera_flower_destroy(struct prestera_flow_block *block,
|
|
struct flow_cls_offload *f);
|
|
int prestera_flower_stats(struct prestera_flow_block *block,
|
|
struct flow_cls_offload *f);
|
|
int prestera_flower_tmplt_create(struct prestera_flow_block *block,
|
|
struct flow_cls_offload *f);
|
|
void prestera_flower_tmplt_destroy(struct prestera_flow_block *block,
|
|
struct flow_cls_offload *f);
|
|
void prestera_flower_template_cleanup(struct prestera_flow_block *block);
|
|
int prestera_flower_prio_get(struct prestera_flow_block *block, u32 chain_index,
|
|
u32 *prio_min, u32 *prio_max);
|
|
|
|
#endif /* _PRESTERA_FLOWER_H_ */
|