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
Queues numbers are determined based on os.listdir("/sys/class/net/") which returns array elements in random manner.
Yet it badly covers the situation when interfaces appear\disappear from the OS. We may end up at collisions, when running multiple per-interface Osfooler instances.
I believe we should read /sys/class/net/$if_name/ifindex and use the value for calculating Queue numbers, instead of using array element index numbers.
The text was updated successfully, but these errors were encountered:
Queues numbers are determined based on
os.listdir("/sys/class/net/")
which returns array elements in random manner.Yet it badly covers the situation when interfaces appear\disappear from the OS. We may end up at collisions, when running multiple per-interface Osfooler instances.
I believe we should read
/sys/class/net/$if_name/ifindex
and use the value for calculating Queue numbers, instead of using array element index numbers.The text was updated successfully, but these errors were encountered: