Maximilian Gaul
Maximilian Gaul
Hello, I need `onnxruntime` to finish an assignment, unfortunately after installing protobuf: ``` % pip3 install 'protobuf==3.17.0' Collecting protobuf==3.17.0 Downloading protobuf-3.17.0-py2.py3-none-any.whl (173 kB) |████████████████████████████████| 173 kB 1.0 MB/s Collecting six>=1.9...
@Fohlen Thank you, but same problem. I guess the problem is `Protobuf compiler not found`? Is it enough to `brew install protobuf-c`? Edit: Okay, after `brew install protobuf-c` this worked...
After further investigation: The XDP-program is not loaded into the kernel because `cfg.filename[0] == 0`. Edit: If I enter `af_xdp_kern.o` manually to `struct config cfg` I get: `ERROR: Can't setup...
It looks like, xsk.c doesn't like it if no map is loaded/used by the kernel program.
I wrote the original stackoverflow-question and also this kernel-mail question: https://marc.info/?l=xdp-newbies&m=158472686211835&w=2 This is my `xdp_create_socket`-function: ``` struct xsk_socket_config xsk_socket_cfg; struct xsk_socket_info *xsk; struct xsk_ring_cons *rxr; struct xsk_ring_prod *txr; int ret;...
Thank you so much simon. I tracked down the problem to my packet-parsing. Can someone just take a quick glimpse and tell me what is wrong with this parsing? ```...
Oh my god! Thank you!
I also get only 12 bytes from `gcov_convert_to_gcda`, furthermore the filenames are not correct and always empty `\0`.
@drgrandios You are the boss! @GigAnon I am getting this error: ``` $ lcov --capture --initial --directory . -o coverage.info Capturing coverage data from . Found gcov version: 10.2.1 Using...
Did you find a solution for this problem?