mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-12 10:15:54 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
24 lines
857 B
C
24 lines
857 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);
|
|
|
|
#endif /* _PRESTERA_FLOWER_H_ */
|