Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5d5e84eb authored by Nathan Fontenot's avatar Nathan Fontenot Committed by David S. Miller
Browse files

ibmvnic: Move initialization of the stats token to ibmvnic_open



We should be initializing the stats token in the same place we
initialize the other resources for the driver.

Signed-off-by: default avatarNathan Fontenot <nfont@linux.vnet.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2f9de9ba
Loading
Loading
Loading
Loading
+4 −6
Original line number Diff line number Diff line
@@ -607,6 +607,10 @@ static int ibmvnic_open(struct net_device *netdev)
		return -1;
	}

	rc = init_stats_token(adapter);
	if (rc)
		return rc;

	adapter->map_id = 1;
	adapter->napi = kcalloc(adapter->req_rx_queues,
				sizeof(struct napi_struct), GFP_KERNEL);
@@ -3241,12 +3245,6 @@ static int ibmvnic_init(struct ibmvnic_adapter *adapter)
		return rc;
	}

	rc = init_stats_token(adapter);
	if (rc) {
		release_crq_queue(adapter);
		return rc;
	}

	init_completion(&adapter->init_done);
	ibmvnic_send_crq_init(adapter);
	if (!wait_for_completion_timeout(&adapter->init_done, timeout)) {