]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: mdio: Demote probed message to debug print
authorFlorian Fainelli <f.fainelli@gmail.com>
Mon, 3 Jan 2022 19:40:24 +0000 (11:40 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Jan 2022 07:46:18 +0000 (08:46 +0100)
[ Upstream commit 7590fc6f80ac2cbf23e6b42b668bbeded070850b ]

On systems with large numbers of MDIO bus/muxes the message indicating
that a given MDIO bus has been successfully probed is repeated for as
many buses we have, which can eat up substantial boot time for no
reason, demote to a debug print.

Reported-by: Maxime Bizon <mbizon@freebox.fr>
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://lore.kernel.org/r/20220103194024.2620-1-f.fainelli@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/phy/mdio_bus.c

index 4066fb5a935a7f2b54a6d3153be57d9cb2bf6dc7..2fb95cca331833d4611e7a3aefb0554851905e6e 100644 (file)
@@ -295,7 +295,7 @@ int __mdiobus_register(struct mii_bus *bus, struct module *owner)
        }
 
        bus->state = MDIOBUS_REGISTERED;
-       pr_info("%s: probed\n", bus->name);
+       dev_dbg(&bus->dev, "probed\n");
        return 0;
 
 error: