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 there are 252 VF, the size of IFLA_VFINFO_LIST will reach 65524 (252*260+4). In addition, when considering other fields such as IFLA_STATS64, IFLA_STATS, IFLA_AF_SPEC, etc., nlmsg_len can easily exceed 65535.
Meanwhile, in a kernel submission (torvalds/linux@75345f8), the BROADCAST field was added to VF, making the size of a single VF reach 296. With this change, when there are 222 VF, the size of IFLA_VFINFO_LIST will reach 65716.
Therefore, RECEIVE_BUFFER_SIZE=65535 is not enough.
The text was updated successfully, but these errors were encountered:
When there are 252 VF, the size of IFLA_VFINFO_LIST will reach 65524 (252*260+4). In addition, when considering other fields such as IFLA_STATS64, IFLA_STATS, IFLA_AF_SPEC, etc., nlmsg_len can easily exceed 65535.
Meanwhile, in a kernel submission (torvalds/linux@75345f8), the BROADCAST field was added to VF, making the size of a single VF reach 296. With this change, when there are 222 VF, the size of IFLA_VFINFO_LIST will reach 65716.
Therefore, RECEIVE_BUFFER_SIZE=65535 is not enough.
The text was updated successfully, but these errors were encountered: