You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using only some interfaces (eg only dpdk1 when there is in fact dpdk0 and dpdk1 on the machine) leads to a segfault, at least with epwget.
GetOutputInterface will return the "name" index instead of the interface index, therefore this line segfault :
api.c:936 saddr_base = g_config.mos->netdev_table->ent[nif_out]->ip_addr;
as nif_out should be 0 and not 1
The text was updated successfully, but these errors were encountered:
When using only some interfaces (eg only dpdk1 when there is in fact dpdk0 and dpdk1 on the machine) leads to a segfault, at least with epwget.
GetOutputInterface will return the "name" index instead of the interface index, therefore this line segfault :
api.c:936 saddr_base = g_config.mos->netdev_table->ent[nif_out]->ip_addr;
as nif_out should be 0 and not 1
The text was updated successfully, but these errors were encountered: