xref: /openbmc/qemu/ebpf/ebpf_rss-stub.c (revision 908a8770)
1*46627f41SAndrew Melnychenko /*
2*46627f41SAndrew Melnychenko  * eBPF RSS stub file
3*46627f41SAndrew Melnychenko  *
4*46627f41SAndrew Melnychenko  * Developed by Daynix Computing LTD (http://www.daynix.com)
5*46627f41SAndrew Melnychenko  *
6*46627f41SAndrew Melnychenko  * Authors:
7*46627f41SAndrew Melnychenko  *  Yuri Benditovich <yuri.benditovich@daynix.com>
8*46627f41SAndrew Melnychenko  *
9*46627f41SAndrew Melnychenko  * This work is licensed under the terms of the GNU GPL, version 2.  See
10*46627f41SAndrew Melnychenko  * the COPYING file in the top-level directory.
11*46627f41SAndrew Melnychenko  */
12*46627f41SAndrew Melnychenko 
13*46627f41SAndrew Melnychenko #include "qemu/osdep.h"
14*46627f41SAndrew Melnychenko #include "ebpf/ebpf_rss.h"
15*46627f41SAndrew Melnychenko 
ebpf_rss_init(struct EBPFRSSContext * ctx)16*46627f41SAndrew Melnychenko void ebpf_rss_init(struct EBPFRSSContext *ctx)
17*46627f41SAndrew Melnychenko {
18*46627f41SAndrew Melnychenko 
19*46627f41SAndrew Melnychenko }
20*46627f41SAndrew Melnychenko 
ebpf_rss_is_loaded(struct EBPFRSSContext * ctx)21*46627f41SAndrew Melnychenko bool ebpf_rss_is_loaded(struct EBPFRSSContext *ctx)
22*46627f41SAndrew Melnychenko {
23*46627f41SAndrew Melnychenko     return false;
24*46627f41SAndrew Melnychenko }
25*46627f41SAndrew Melnychenko 
ebpf_rss_load(struct EBPFRSSContext * ctx)26*46627f41SAndrew Melnychenko bool ebpf_rss_load(struct EBPFRSSContext *ctx)
27*46627f41SAndrew Melnychenko {
28*46627f41SAndrew Melnychenko     return false;
29*46627f41SAndrew Melnychenko }
30*46627f41SAndrew Melnychenko 
ebpf_rss_set_all(struct EBPFRSSContext * ctx,struct EBPFRSSConfig * config,uint16_t * indirections_table,uint8_t * toeplitz_key)31*46627f41SAndrew Melnychenko bool ebpf_rss_set_all(struct EBPFRSSContext *ctx, struct EBPFRSSConfig *config,
32*46627f41SAndrew Melnychenko                       uint16_t *indirections_table, uint8_t *toeplitz_key)
33*46627f41SAndrew Melnychenko {
34*46627f41SAndrew Melnychenko     return false;
35*46627f41SAndrew Melnychenko }
36*46627f41SAndrew Melnychenko 
ebpf_rss_unload(struct EBPFRSSContext * ctx)37*46627f41SAndrew Melnychenko void ebpf_rss_unload(struct EBPFRSSContext *ctx)
38*46627f41SAndrew Melnychenko {
39*46627f41SAndrew Melnychenko 
40*46627f41SAndrew Melnychenko }
41