Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

lan78xx: Avoid spurious kevent 4 "error"

lan78xx_defer_event generates an error message whenever the work item
is already scheduled. lan78xx_open defers three events -
EVENT_STAT_UPDATE, EVENT_DEV_OPEN and EVENT_LINK_RESET. Being aware
of the likelihood (or certainty) of an error message, the DEV_OPEN
event is added to the set of pending events directly, relying on
the subsequent deferral of the EVENT_LINK_RESET call to schedule the
work. Take the same precaution with EVENT_STAT_UPDATE to avoid a
totally unnecessary error message.

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Phil Elwell and committed by
David S. Miller
fed56079 4bfc3380

+1 -1
+1 -1
drivers/net/usb/lan78xx.c
··· 2503 2503 dev->stats.rollover_max.eee_tx_lpi_transitions = 0xFFFFFFFF; 2504 2504 dev->stats.rollover_max.eee_tx_lpi_time = 0xFFFFFFFF; 2505 2505 2506 - lan78xx_defer_kevent(dev, EVENT_STAT_UPDATE); 2506 + set_bit(EVENT_STAT_UPDATE, &dev->flags); 2507 2507 } 2508 2508 2509 2509 static int lan78xx_open(struct net_device *net)