mirror of https://gitee.com/openkylin/linux.git
ibmvnic: remove never executed if statement
At the beginning of the function, from_passive_init is set false by "adapter->from_passive_init = false;", hence the if statement will never run. Signed-off-by: Lijun Pan <ljp@linux.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fa68bfab1e
commit
550f4d46af
|
@ -5017,12 +5017,6 @@ static int ibmvnic_reset_init(struct ibmvnic_adapter *adapter)
|
||||||
return adapter->init_done_rc;
|
return adapter->init_done_rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adapter->from_passive_init) {
|
|
||||||
adapter->state = VNIC_OPEN;
|
|
||||||
adapter->from_passive_init = false;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (test_bit(0, &adapter->resetting) && !adapter->wait_for_reset &&
|
if (test_bit(0, &adapter->resetting) && !adapter->wait_for_reset &&
|
||||||
adapter->reset_reason != VNIC_RESET_MOBILITY) {
|
adapter->reset_reason != VNIC_RESET_MOBILITY) {
|
||||||
if (adapter->req_rx_queues != old_num_rx_queues ||
|
if (adapter->req_rx_queues != old_num_rx_queues ||
|
||||||
|
@ -5076,12 +5070,6 @@ static int ibmvnic_init(struct ibmvnic_adapter *adapter)
|
||||||
return adapter->init_done_rc;
|
return adapter->init_done_rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (adapter->from_passive_init) {
|
|
||||||
adapter->state = VNIC_OPEN;
|
|
||||||
adapter->from_passive_init = false;
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
rc = init_sub_crqs(adapter);
|
rc = init_sub_crqs(adapter);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
dev_err(dev, "Initialization of sub crqs failed\n");
|
dev_err(dev, "Initialization of sub crqs failed\n");
|
||||||
|
|
Loading…
Reference in New Issue