Skip to content

Commit 6ecd856

Browse files
dlechZhengShunQian
authored andcommitted
net: usb: rtl8150: demote allmulti message to dev_dbg()
[ Upstream commit 3a9b045 ] This driver can spam the kernel log with multiple messages of: net eth0: eth0: allmulti set Usually 4 or 8 at a time (probably because of using ConnMan). This message doesn't seem useful, so let's demote it from dev_info() to dev_dbg(). Signed-off-by: David Lechner <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent dbb9da7 commit 6ecd856

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/usb/rtl8150.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ static void rtl8150_set_multicast(struct net_device *netdev)
681681
(netdev->flags & IFF_ALLMULTI)) {
682682
rx_creg &= 0xfffe;
683683
rx_creg |= 0x0002;
684-
dev_info(&netdev->dev, "%s: allmulti set\n", netdev->name);
684+
dev_dbg(&netdev->dev, "%s: allmulti set\n", netdev->name);
685685
} else {
686686
/* ~RX_MULTICAST, ~RX_PROMISCUOUS */
687687
rx_creg &= 0x00fc;

0 commit comments

Comments
 (0)