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:
Manfred Rudigier 2012-01-09 23:52:15 +00:00 committed by David S. Miller
parent 9c4886e5e6
commit 72092cc453
1 changed files with 1 additions and 1 deletions

View File

@ -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. */