Patch "net: dsa: felix: fix taprio guard band overflow at 10Mbps with jumbo frames" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    net: dsa: felix: fix taprio guard band overflow at 10Mbps with jumbo frames

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     net-dsa-felix-fix-taprio-guard-band-overflow-at-10mb.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 0fce8160449ab0c45313c7a88fec421d6fafa157
Author: Vladimir Oltean <vladimir.oltean@xxxxxxx>
Date:   Tue Jun 13 20:09:07 2023 +0300

    net: dsa: felix: fix taprio guard band overflow at 10Mbps with jumbo frames
    
    [ Upstream commit 6ac7a27a8b07588497ed53dfd885df9c72bc67e0 ]
    
    The DEV_MAC_MAXLEN_CFG register contains a 16-bit value - up to 65535.
    Plus 2 * VLAN_HLEN (4), that is up to 65543.
    
    The picos_per_byte variable is the largest when "speed" is lowest -
    SPEED_10 = 10. In that case it is (1000000L * 8) / 10 = 800000.
    
    Their product - 52434400000 - exceeds 32 bits, which is a problem,
    because apparently, a multiplication between two 32-bit factors is
    evaluated as 32-bit before being assigned to a 64-bit variable.
    In fact it's a problem for any MTU value larger than 5368.
    
    Cast one of the factors of the multiplication to u64 to force the
    multiplication to take place on 64 bits.
    
    Issue found by Coverity.
    
    Fixes: 55a515b1f5a9 ("net: dsa: felix: drop oversized frames with tc-taprio instead of hanging the port")
    Signed-off-by: Vladimir Oltean <vladimir.oltean@xxxxxxx>
    Reviewed-by: Simon Horman <simon.horman@xxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20230613170907.2413559-1-vladimir.oltean@xxxxxxx
    Signed-off-by: Jakub Kicinski <kuba@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/dsa/ocelot/felix_vsc9959.c b/drivers/net/dsa/ocelot/felix_vsc9959.c
index cc89cff029e1f..5f6af0870dfd6 100644
--- a/drivers/net/dsa/ocelot/felix_vsc9959.c
+++ b/drivers/net/dsa/ocelot/felix_vsc9959.c
@@ -1253,7 +1253,7 @@ static void vsc9959_tas_guard_bands_update(struct ocelot *ocelot, int port)
 	/* Consider the standard Ethernet overhead of 8 octets preamble+SFD,
 	 * 4 octets FCS, 12 octets IFG.
 	 */
-	needed_bit_time_ps = (maxlen + 24) * picos_per_byte;
+	needed_bit_time_ps = (u64)(maxlen + 24) * picos_per_byte;
 
 	dev_dbg(ocelot->dev,
 		"port %d: max frame size %d needs %llu ps at speed %d\n",



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux