1
2
3
4
5
6
7
8
9
10
11
12
13#include "qemu/osdep.h"
14#include "ebpf/ebpf_rss.h"
15
16void ebpf_rss_init(struct EBPFRSSContext *ctx)
17{
18
19}
20
21bool ebpf_rss_is_loaded(struct EBPFRSSContext *ctx)
22{
23 return false;
24}
25
26bool ebpf_rss_load(struct EBPFRSSContext *ctx, Error **errp)
27{
28 return false;
29}
30
31bool ebpf_rss_load_fds(struct EBPFRSSContext *ctx, int program_fd,
32 int config_fd, int toeplitz_fd, int table_fd,
33 Error **errp)
34{
35 return false;
36}
37
38bool ebpf_rss_set_all(struct EBPFRSSContext *ctx, struct EBPFRSSConfig *config,
39 uint16_t *indirections_table, uint8_t *toeplitz_key,
40 Error **errp)
41{
42 return false;
43}
44
45void ebpf_rss_unload(struct EBPFRSSContext *ctx)
46{
47
48}
49