Skip to content

Commit

Permalink
dp83640: Fix NOHZ local_softirq_pending 08 warning
Browse files Browse the repository at this point in the history
Similar problem as in 481a819 ("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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Manfred Rudigier authored and davem330 committed Jan 12, 2012
1 parent 9c4886e commit 72092cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/phy/dp83640.c
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 72092cc

Please sign in to comment.