Re: [PATCHv2 net 0/2] Add netdev_level_ratelimited to avoid netdev msg flush
From: Thomas Falcon <hidden>
Date: 2019-08-12 15:56:51
On 8/12/19 2:37 AM, Hangbin Liu wrote:
On Sun, Aug 11, 2019 at 09:08:20PM -0700, David Miller wrote:quoted
From: Hangbin Liu <redacted> Date: Fri, 9 Aug 2019 08:29:39 +0800quoted
ibmveth 30000003 env3: h_multicast_ctrl rc=4 when adding an entry to the filter table error when add more thann 256 memberships in one multicast group. I haven't found this issue on other driver. It looks like an ibm driver issue and need to be fixed separately.You need to root cause and fix the reason this message appears so much. Once I let you rate limit the message you will have zero incentive to fix the real problem and fix it.Sorry, I'm not familiar with ibmveth driver... Hi Thomas, Would you please help check why this issue happens
Hi, thanks for reporting this. I was able to recreate this on my own system. The virtual ethernet's multicast filter list size is limited, and the driver will check that there is available space before adding entries. The problem is that the size is encoded as big endian, but the driver does not convert it for little endian systems after retrieving it from the device tree. As a result the driver is requesting more than the hypervisor can allow and getting this error in reply. I will submit a patch to correct this soon. Thanks again, Tom
Thanks Hangbbin