瀏覽代碼

ibmvnic: Track state of adapter napis

Track the state of ibmvnic napis. The driver can get into states where it
can be reset when napis are already disabled and attempting to disable them
again will cause the driver to hang.

Signed-off-by: John Allen <jallen@linux.vnet.ibm.com>
Signed-off-by: Nathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
John Allen 8 年之前
父節點
當前提交
d944c3d60a
共有 2 個文件被更改,包括 29 次插入9 次删除
  1. 28 9
      drivers/net/ethernet/ibm/ibmvnic.c
  2. 1 0
      drivers/net/ethernet/ibm/ibmvnic.h

+ 28 - 9
drivers/net/ethernet/ibm/ibmvnic.c

@@ -518,6 +518,32 @@ static void release_error_buffers(struct ibmvnic_adapter *adapter)
 	spin_unlock_irqrestore(&adapter->error_list_lock, flags);
 	spin_unlock_irqrestore(&adapter->error_list_lock, flags);
 }
 }
 
 
+static void ibmvnic_napi_enable(struct ibmvnic_adapter *adapter)
+{
+	int i;
+
+	if (adapter->napi_enabled)
+		return;
+
+	for (i = 0; i < adapter->req_rx_queues; i++)
+		napi_enable(&adapter->napi[i]);
+
+	adapter->napi_enabled = true;
+}
+
+static void ibmvnic_napi_disable(struct ibmvnic_adapter *adapter)
+{
+	int i;
+
+	if (!adapter->napi_enabled)
+		return;
+
+	for (i = 0; i < adapter->req_rx_queues; i++)
+		napi_disable(&adapter->napi[i]);
+
+	adapter->napi_enabled = false;
+}
+
 static int ibmvnic_login(struct net_device *netdev)
 static int ibmvnic_login(struct net_device *netdev)
 {
 {
 	struct ibmvnic_adapter *adapter = netdev_priv(netdev);
 	struct ibmvnic_adapter *adapter = netdev_priv(netdev);
@@ -674,9 +700,7 @@ static int __ibmvnic_open(struct net_device *netdev)
 
 
 	adapter->state = VNIC_OPENING;
 	adapter->state = VNIC_OPENING;
 	replenish_pools(adapter);
 	replenish_pools(adapter);
-
-	for (i = 0; i < adapter->req_rx_queues; i++)
-		napi_enable(&adapter->napi[i]);
+	ibmvnic_napi_enable(adapter);
 
 
 	/* We're ready to receive frames, enable the sub-crq interrupts and
 	/* We're ready to receive frames, enable the sub-crq interrupts and
 	 * set the logical link state to up
 	 * set the logical link state to up
@@ -779,12 +803,7 @@ static int __ibmvnic_close(struct net_device *netdev)
 
 
 	adapter->state = VNIC_CLOSING;
 	adapter->state = VNIC_CLOSING;
 	netif_tx_stop_all_queues(netdev);
 	netif_tx_stop_all_queues(netdev);
-
-	if (adapter->napi) {
-		for (i = 0; i < adapter->req_rx_queues; i++)
-			napi_disable(&adapter->napi[i]);
-	}
-
+	ibmvnic_napi_disable(adapter);
 	clean_tx_pools(adapter);
 	clean_tx_pools(adapter);
 
 
 	if (adapter->tx_scrq) {
 	if (adapter->tx_scrq) {

+ 1 - 0
drivers/net/ethernet/ibm/ibmvnic.h

@@ -1031,4 +1031,5 @@ struct ibmvnic_adapter {
 	struct list_head rwi_list;
 	struct list_head rwi_list;
 	struct work_struct ibmvnic_reset;
 	struct work_struct ibmvnic_reset;
 	bool resetting;
 	bool resetting;
+	bool napi_enabled;
 };
 };