cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

prestera_flower.h (857B)


      1/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
      2/* Copyright (c) 2020-2021 Marvell International Ltd. All rights reserved. */
      3
      4#ifndef _PRESTERA_FLOWER_H_
      5#define _PRESTERA_FLOWER_H_
      6
      7#include <net/pkt_cls.h>
      8
      9struct prestera_flow_block;
     10
     11int prestera_flower_replace(struct prestera_flow_block *block,
     12			    struct flow_cls_offload *f);
     13void prestera_flower_destroy(struct prestera_flow_block *block,
     14			     struct flow_cls_offload *f);
     15int prestera_flower_stats(struct prestera_flow_block *block,
     16			  struct flow_cls_offload *f);
     17int prestera_flower_tmplt_create(struct prestera_flow_block *block,
     18				 struct flow_cls_offload *f);
     19void prestera_flower_tmplt_destroy(struct prestera_flow_block *block,
     20				   struct flow_cls_offload *f);
     21void prestera_flower_template_cleanup(struct prestera_flow_block *block);
     22
     23#endif /* _PRESTERA_FLOWER_H_ */