Re: [PATCH v4 1/3] dsa: marvell: Provide per device information about max frame size

From: Russell King (Oracle)
Date: Mon Jan 30 2023 - 07:30:17 EST


On Mon, Jan 30, 2023 at 12:57:31PM +0100, Lukasz Majewski wrote:
> Hi Russell,
>
> > What I'm concerned about, and why I replied, is that setting the
> > devices to have a max frame size of 1522 when we program them to use
> > a larger frame size means we break those switches for normal sized
> > packets.
> >
> > The current logic in mv88e6xxx_get_max_mtu() is:
> >
> > If the chip implements port_set_jumbo_size, then packet sizes
> > of up to 10240 are supported.
> > (ops: 6131, 6141, 6171, 6172, 6175, 6176, 6190, 6190x, 6240,
> > 6320, 6321, 6341, 6350, 6351, 6352, 6390, 6390x, 6393x)
> > If the chip implements set_max_frame_size, then packet sizes
> > of up to 1632 are supported.
> > (ops: 6085, 6095, 6097, 6123, 6161, 6185)
> > Otherwise, packets of up to 1522 are supported.
> >
> > Now, going through the patch, I see:
> >
> > 88e6085 has 10240 but currently has 1632
> > 88e6095 has 1632 (no change)
> > 88e6097 has 1632 (no change)
> > 88e6123 has 10240 but currently has 1632
> > 88e6131 has 10240 (no change)
> > 88e6141 has 10240 (no change)
> > 88e6161 has 1632 but currently has 10240
> > 88e6165 has 1632 but currently has 1522
> > 88e6171 has 1522 but currently has 10240
> > 88e6172 has 10240 (no change)
> > 88e6175 has 1632 but currently has 10240
> > 88e6176 has 10240 (no change)
> > 88e6185 has 1632 (no change)
> > 88e6190 has 10240 (no change)
> > 88e6190x has 10240 (no change)
> > 88e6191 has 10240 but currently has 1522
> > 88e6191x has 1522 but currently has 10240
> > 88e6193x has 1522 but currently has 10240
> > 88e6220 has 2048 but currently has 1522
> > 88e6240 has 10240 (no change)
> > 88e6250 has 2048 but currently has 1522
> > 88e6290 has 10240 but currently has 1522
> > 88e6320 has 10240 (no change)
> > 88e6321 has 10240 (no change)
> > 88e6341 has 10240 (no change)
> > 88e6350 has 10240 (no change)
> > 88e6351 has 10240 (no change)
> > 88e6352 has 10240 (no change)
> > 88e6390 has 1522 but currently has 10240
> > 88e6390x has 1522 but currently has 10240
> > 88e6393x has 1522 but currently has 10240
> >
> > My point is that based on the above, there's an awful lot of changes
> > that this one patch brings, and I'm not sure many of them are
> > intended.
>
> As I only have access to mv88e60{20|71} SoCs I had to base on the code
> to deduce which max frame is supported.

The above list of differences are also derived from the code, and this
rather proves my point that deriving these from the code is hard, and
we need a way to programmatically verify that we get them correct.

> > So, I think it would be far better to introduce the "max_frame_size"
> > field using the existing values, and then verify that value during
> > initialisation time for every entry in mv88e6xxx_table[] using the
> > rules that mv88e6xxx_get_max_mtu() was using. Boot that kernel, and
> > have it run that verification, and state that's what's happened and
> > was successful in the commit message.
> >
> > In the next commit, change mv88e6xxx_get_max_mtu() to use those
> > verified values and remove the verification code.
> >
> > Then in the following commit, update the "max_frame_size" values with
> > the changes you intend to make.
> >
> > Then, we can (a) have confidence that each of the new members were
> > properly initialised, and (b) we can also see what changes you're
> > intentionally making.
> >
>
> If I understood you correctly - the approach would be to "simulate" and
> obtain each max_frame_size assigned in mv88e6xxx_get_max_mtu() to be
> sure that we do preserve current (buggy or not) behaviour.

What I'm suggesting is something like:

static void mv88e6xxx_validate_frame_size(void)
{
int max;
int i;

for (i = 0; i < ARRAY_SIZE(mv88e6xxx_table); i++) {
/* same logic as in mv88e6xxx_get_max_mtu() */
if (mv88e6xxx_table[i].ops->port_set_jumbo_size)
max = 10240;
else if (mv88e6xxx_table[i].ops->set_max_frame_size)
max = 1632;
else
max = 1522;

if (mv88e6xxx_table[i].max_frame_size != max)
pr_err("BUG: %s has differing max_frame_size: %d != %d\n",
mv88e6xxx_table[i].name, max,
mv88e6xxx_table[i].max_frame_size);
}
}

called from the mv88e6xxx_probe() function. I don't see any need to
do much more than that to verify the table, and I don't see any need
to make it only execute once - it's not like the code will be around
for very long.

Provided this code gets run, we can then be sure that the
max_frame_size values initially added correspond with the values
the driver currently uses.

--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!