This is a note to let you know that I've just added the patch titled net: mvpp2: fix the mac address used when using PPv2.2 to the 4.12-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-mvpp2-fix-the-mac-address-used-when-using-ppv2.2.patch and it can be found in the queue-4.12 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From foo@baz Thu Sep 14 23:20:23 PDT 2017 From: Antoine Tenart <antoine.tenart@xxxxxxxxxxxxxxxxxx> Date: Fri, 25 Aug 2017 16:14:17 +0200 Subject: net: mvpp2: fix the mac address used when using PPv2.2 From: Antoine Tenart <antoine.tenart@xxxxxxxxxxxxxxxxxx> [ Upstream commit 4c22868264516fe0c42817a87f37efb44254e7a9 ] The mac address is only retrieved from h/w when using PPv2.1. Otherwise the variable holding it is still checked and used if it contains a valid value. As the variable isn't initialized to an invalid mac address value, we end up with random mac addresses which can be the same for all the ports handled by this PPv2 driver. Fixes this by initializing the h/w mac address variable to {0}, which is an invalid mac address value. This way the random assignation fallback is called and all ports end up with their own addresses. Signed-off-by: Antoine Tenart <antoine.tenart@xxxxxxxxxxxxxxxxxx> Fixes: 2697582144dd ("net: mvpp2: handle misc PPv2.1/PPv2.2 differences") Signed-off-by: David S. Miller <davem@xxxxxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/net/ethernet/marvell/mvpp2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/net/ethernet/marvell/mvpp2.c +++ b/drivers/net/ethernet/marvell/mvpp2.c @@ -6465,7 +6465,7 @@ static int mvpp2_port_probe(struct platf struct resource *res; const char *dt_mac_addr; const char *mac_from; - char hw_mac_addr[ETH_ALEN]; + char hw_mac_addr[ETH_ALEN] = {0}; u32 id; int features; int phy_mode; Patches currently in stable-queue which might be from antoine.tenart@xxxxxxxxxxxxxxxxxx are queue-4.12/net-mvpp2-fix-the-mac-address-used-when-using-ppv2.2.patch