Diego Pino
Diego Pino
I'm arriving on Friday evening. I'm staying at Alma Hotel (near Grand Place), together with a few more igalians (although I think Andy is staying somewhere else). See you on...
The lwAFTR uses vMDQ by default. The reason is that according to the Intel 82599 datasheet, VLAN tag addition and removing by hardware is available only if vMDQ is enabled....
A similar bug was reported here https://github.com/snabbco/snabb/issues/928. Can you provide a link to the pcap file you're using as well as the command line you're using to send the packets...
I run the test case with `strace` in a NUMA host and a non NUMA host. NUMA host: ``` get_mempolicy([MPOL_DEFAULT], [000000000000000000], 64, NULL, 0) = 0 ``` non-NUMA host: ```...
Some updates on the bug. I took a look a the v4.10 kernel source and apparently the problem is in `maxnode` value. When it gets initialized, it's default value is...
@benagricola Thanks for the tip. I don't know either if there's a better way to retrieve MAX_NUMNODES value. I pushed a patch that calculates MAX_NUMNODES as you suggested.
AFAIK, at the moment it's not possible to disable vmprofiling in Raptorjit, as it's always on. By that I mean there's not flag or environment variable to disable profiling. So...
Probably this is a bug upstream. In the case of WebKitGTK, the API for taking a snapshot stores only RGB information (CAIRO_FORMAT_RGB24). https://github.com/WebKit/WebKit/blob/main/Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp#L3047 Maybe it could be possible to change...
@andywingo commented the proposed patch (remove the else branch) is not correct. I think that once the issue with parsing tcp port was fixed the else branch, that creates the...
@kbara I think what happens with those expressions is the following: `port 3 or src 4` is not actually `port 3 or src port 4`, but `port 3 or src...