target/mips: Remove SmartMIPS / MDMX unuseful comments
[qemu/ar7.git] / ebpf / ebpf_rss-stub.c
blobe71e229190de996bcc5d4a2ea21da28d323670b0
1 /*
2 * eBPF RSS stub file
4 * Developed by Daynix Computing LTD (http://www.daynix.com)
6 * Authors:
7 * Yuri Benditovich <yuri.benditovich@daynix.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
13 #include "qemu/osdep.h"
14 #include "ebpf/ebpf_rss.h"
16 void ebpf_rss_init(struct EBPFRSSContext *ctx)
21 bool ebpf_rss_is_loaded(struct EBPFRSSContext *ctx)
23 return false;
26 bool ebpf_rss_load(struct EBPFRSSContext *ctx)
28 return false;
31 bool ebpf_rss_set_all(struct EBPFRSSContext *ctx, struct EBPFRSSConfig *config,
32 uint16_t *indirections_table, uint8_t *toeplitz_key)
34 return false;
37 void ebpf_rss_unload(struct EBPFRSSContext *ctx)