mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
dp83640: Fix NOHZ local_softirq_pending 08 warning
Similar problem as in 481a819914
("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>
This commit is contained in:
parent
9c4886e5e6
commit
72092cc453
@ -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. */
|
||||
|
Loading…
Reference in New Issue
Block a user