From: Baruch Siach Date: Mon, 15 Dec 2008 20:18:52 +0000 (+0000) Subject: enc28j60: use netif_rx_ni() to deliver RX packets X-Git-Tag: v2.6.28-rc9~3^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c413a6434dca02387a263dc4ca8009692421998;p=pandora-kernel.git enc28j60: use netif_rx_ni() to deliver RX packets The enc28j60 driver reads incoming packets in the process (workqueue) context, not in a tasklet or the interrupt context. Thus, we should use netif_rx_ni() to deliver those packets to the networking layer, instead of netif_rx(). This way incoming packets don't wait in the incoming queue for the next IRQ to be serviced. Signed-off-by: Baruch Siach Signed-off-by: David S. Miller --- Reading git-diff-tree failed