Re: [PATCH net 0/5] ethernet: 3c509: Bring driver back and make some fixes
From: Andrew Lunn <andrew@lunn.ch>
Date: 2026-05-21 12:17:16
Also in:
lkml
On Wed, May 20, 2026 at 12:18:44PM +0100, Maciej W. Rozycki wrote:
Hi, As per the previous discussions[1][2] this patch series brings the 3c509 driver back. Picking up net rather than net-next as I consider it a fix to accidental removal and so that any downstream users do not suffer from disruption when using released kernels. In the course of making the coding style changes requested I have come across an actual bug in transceiver type selection code, where the old setting is not masked out before ORing in the new one, causing no change to be actually made in a requested transition from BNC to AUI. I guess this code must have been executed exceedingly rarely, as it's always been wrong ever since it was added in 2.5.42 back in 2002. Therefore I find it not worth backporting to stable branches, however for the sake of appropriateness, in case someone downstream does want to have the fix, I chose to apply it second in the series, right after the actual revert and before code clean-ups. The remaining patches of the series should be obvious; see the respective commit descriptions for details.
You need to split this up. Patches to net are likely to get back ported, even if they don't have Fixes tags. So please add the driver back in net, but fixup the issues you have found in net-next. There is also an question of if we want the coding style patch or not. https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html 1.7.4. Clean-up patches Netdev discourages patches which perform simple clean-ups, which are not in the context of other work. For example: * Addressing checkpatch.pl, and other trivial coding style warnings The problem with these sorts of patches is that they often break stuff. This driver has been stable for a long time. Do we care about coding style issues enough that we are happy to possibly break it? Do we want to spend time on debugging it? Probably more time than it took to fix the checkpatch issues? Andrew