From: Herbert Xu Date: Thu, 26 Mar 2009 07:59:10 +0000 (-0700) Subject: GRO: Disable GRO on legacy netif_rx path X-Git-Tag: v2.6.30-rc1~642^2~52 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f1ead2d1a626ed0c85b3d2c2046a49081d5933f;p=pandora-kernel.git GRO: Disable GRO on legacy netif_rx path When I fixed the GRO crash in the legacy receive path I used napi_complete to replace __napi_complete. Unfortunately they're not the same when NETPOLL is enabled, which may result in us not calling __napi_complete at all. What's more, we really do need to keep the __napi_complete call within the IRQ-off section since in theory an IRQ can occur in between and fill up the backlog to the maximum, causing us to lock up. Since we can't seem to find a fix that works properly right now, this patch reverts all the GRO support from the netif_rx path. Signed-off-by: Herbert Xu Signed-off-by: David S. Miller --- Reading git-diff-tree failed