فهرست منبع

pch_gbe: Fixed the issue on which PC was frozen when link was downed.

When a link was downed during network use,
there is an issue on which PC freezes.

This patch fixed this issue.

Signed-off-by: Toshiharu Okada <toshiharu-linux@dsn.okisemi.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Toshiharu Okada 13 سال پیش
والد
کامیت
5f3a114190
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      drivers/net/pch_gbe/pch_gbe_main.c

+ 1 - 1
drivers/net/pch_gbe/pch_gbe_main.c

@@ -2195,7 +2195,7 @@ static int pch_gbe_napi_poll(struct napi_struct *napi, int budget)
 		/* If no Tx and not enough Rx work done,
 		/* If no Tx and not enough Rx work done,
 		 * exit the polling mode
 		 * exit the polling mode
 		 */
 		 */
-		if ((work_done < budget) || !netif_running(netdev))
+		if (work_done < budget)
 			poll_end_flag = true;
 			poll_end_flag = true;
 	}
 	}