2
0

ebpf_rss-stub.c 766 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. #include "qemu/osdep.h"
  13. #include "ebpf/ebpf_rss.h"
  14. void ebpf_rss_init(struct EBPFRSSContext *ctx)
  15. {
  16. }
  17. bool ebpf_rss_is_loaded(struct EBPFRSSContext *ctx)
  18. {
  19. return false;
  20. }
  21. bool ebpf_rss_load(struct EBPFRSSContext *ctx)
  22. {
  23. return false;
  24. }
  25. bool ebpf_rss_set_all(struct EBPFRSSContext *ctx, struct EBPFRSSConfig *config,
  26. uint16_t *indirections_table, uint8_t *toeplitz_key)
  27. {
  28. return false;
  29. }
  30. void ebpf_rss_unload(struct EBPFRSSContext *ctx)
  31. {
  32. }