master
c 50 lines 1.09 KB
Raw
1 /*
2 * eBPF RSS stub file
3 *
4 * Developed by Daynix Computing LTD (http://www.daynix.com)
5 *
6 * Authors:
7 * Yuri Benditovich <yuri.benditovich@daynix.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 */
12
13 #include "qemu/osdep.h"
14 #include "ebpf/ebpf_rss.h"
15
16 void ebpf_rss_init(struct EBPFRSSContext *ctx)
17 {
18
19 }
20
21 bool ebpf_rss_is_loaded(struct EBPFRSSContext *ctx)
22 {
23 return false;
24 }
25
26 bool ebpf_rss_load(struct EBPFRSSContext *ctx, Error **errp)
27 {
28 error_setg(errp, "eBPF support is not compiled in");
29 return false;
30 }
31
32 bool ebpf_rss_load_fds(struct EBPFRSSContext *ctx, int program_fd,
33 int config_fd, int toeplitz_fd, int table_fd,
34 Error **errp)
35 {
36 error_setg(errp, "eBPF support is not compiled in");
37 return false;
38 }
39
40 bool ebpf_rss_set_all(struct EBPFRSSContext *ctx, struct EBPFRSSConfig *config,
41 uint16_t *indirections_table, uint8_t *toeplitz_key,
42 Error **errp)
43 {
44 abort();
45 }
46
47 void ebpf_rss_unload(struct EBPFRSSContext *ctx)
48 {
49
50 }