From: Atsushi Nemoto Date: Wed, 2 Sep 2015 08:49:29 +0000 (+0900) Subject: net: eth: altera: fix napi poll_list corruption X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4548a697e4969d695047cebd6d9af5e2f6cc728e;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git net: eth: altera: fix napi poll_list corruption tse_poll() calls __napi_complete() with irq enabled. This leads napi poll_list corruption and may stop all napi drivers working. Use napi_complete() instead of __napi_complete(). Signed-off-by: Atsushi Nemoto Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/altera/altera_tse_main.c b/drivers/net/ethernet/altera/altera_tse_main.c index da48e66377b5..8207877d6237 100644 --- a/drivers/net/ethernet/altera/altera_tse_main.c +++ b/drivers/net/ethernet/altera/altera_tse_main.c @@ -511,8 +511,7 @@ static int tse_poll(struct napi_struct *napi, int budget) if (rxcomplete < budget) { - napi_gro_flush(napi, false); - __napi_complete(napi); + napi_complete(napi); netdev_dbg(priv->dev, "NAPI Complete, did %d packets with budget %d\n",