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

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
......@@ -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. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment