Re: [PATCH net] mctp i3c: fix MCTP I3C driver multi-thread issue

From: Leo Yang
Date: Mon Jan 06 2025 - 20:30:07 EST


On Fri, Jan 3, 2025 at 10:28 AM Jeremy Kerr <jk@xxxxxxxxxxxxxxxxxxxx> wrote:

Hi Jeremy,

>
> Mostly out of curiosity, could you share a little detail about what you
> were observing with that read behaviour? Were the IBIs being handed by
> different CPUs in that case?
>
> I assume that you were seeing the netif_rx() out of sequence with the
> skbs populated from i3c_device_do_priv_xfers(), is that right?
>

Yes, in our test environment, I can observe this issue by making a
request via BMC -> BIC.
and the BIC replies with multiple-packet messages.

Then there is a chance that we can observe the following situation
(trimmed out to avoid long messages in the mail)
i3c from within i3c_device_do_priv_xfers() and
mctp-i3c from messages sent by netif_rx()

[ 120.179246] i3c i3c-1: nresp:1, Rx:01:08:50:80:
[ 120.282348] i3c i3c-1: nresp:1, Rx:01:08:50:10:
[ 120.326819] mctp-i3c 1-7ec80010023: NET_RX_SUCCESS: 01:08:50:80:
[ 120.433935] i3c i3c-1: nresp:1, Rx:01:08:50:20:
[ 120.478631] mctp-i3c 1-7ec80010023: NET_RX_SUCCESS: 01:08:50:20:
[ 120.526682] mctp-i3c 1-7ec80010023: NET_RX_SUCCESS: 01:08:50:10:
[ 120.633453] i3c i3c-1: nresp:1, Rx:01:08:50:30:
[ 120.736494] i3c i3c-1: nresp:1, Rx:01:08:50:40:
[ 120.779371] mctp-i3c 1-7ec80010023: NET_RX_SUCCESS: 01:08:50:40:
[ 120.826232] mctp-i3c 1-7ec80010023: NET_RX_SUCCESS: 01:08:50:30:

We can observe that the read order of i3c is: 80 -> 10 -> 20 -> 30 -> 40
But the final sequence of netif_rx() is: 80 -> 20 -> 10 -> 40 -> 30

> Just to clarify the intent here, and if I'm correct with the assumption
> above, it would be good to a comment on what this lock is serialising.
> If you're re-rolling with Jakub's Fixes request, can you add a comment
> too? Something like:
>
> /* ensure that we netif_rx() in the same order as the i3c reads */
> mutex_lock(&mi->lock);

Yes, thank you for the suggestion.


Best Regards,

Leo Yang