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

dp83640: Fix NOHZ local_softirq_pending 08 warning

Similar problem as in 481a8199142c050b72bff8a1956a49fd0a75bbe0 ("can:
fix NOHZ local_softirq_pending 08 warning"). This fix replaces
netif_rx() with netif_rx_ni() which has to be used from
process/softirq context.

Signed-off-by: Manfred Rudigier <manfred.rudigier@omicron.at>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Manfred Rudigier and committed by
David S. Miller
72092cc4 9c4886e5

+1 -1
+1 -1
drivers/net/phy/dp83640.c
··· 1159 1159 } 1160 1160 } 1161 1161 spin_unlock_irqrestore(&dp83640->rx_lock, flags); 1162 - netif_rx(skb); 1162 + netif_rx_ni(skb); 1163 1163 } 1164 1164 1165 1165 /* Clear out expired time stamps. */