Re: [PATCH net] net: renesas: rswitch: fix forwarding offload statemachine
From: Nikita Yushchenko
Date: Thu Feb 05 2026 - 08:41:16 EST
if (rdev_for_l2_offload() && rdev->forwarding_requested)
rswitch_change_l2_hw_offloading(rdev, true, false); else
rswitch_change_l2_hw_offloading(rdev, false, false);
since rswitch_change_l2_hw_offloading() has internal check for the
current state and returns early if the requested change is already applied.
Unfortunately, this has a side effect, e.g., if you pull the cable on tsn0 and the link
goes down, you will see that the offloading is disabled on all ports connected to the
bridge and not just on tsn0.
Quite strange, is anything else logged? E.g. some messages from linux bridge layer?
Nikita