Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72092cc4 authored by Manfred Rudigier's avatar Manfred Rudigier Committed by David S. Miller
Browse files

dp83640: Fix NOHZ local_softirq_pending 08 warning



Similar problem as in 481a8199 ("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: default avatarManfred Rudigier <manfred.rudigier@omicron.at>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9c4886e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1159,7 +1159,7 @@ static void rx_timestamp_work(struct work_struct *work)
			}
		}
		spin_unlock_irqrestore(&dp83640->rx_lock, flags);
		netif_rx(skb);
		netif_rx_ni(skb);
	}

	/* Clear out expired time stamps. */