mirror of
https://github.com/torvalds/linux.git
synced 2024-12-14 15:13:52 +00:00
ibmvnic: Non-fatal error handling
Handle non-fatal error conditions. The process to do this when resetting the driver is to just do __ibmvnic_close followed by __ibmvnic_open. Signed-off-by: John Allen <jallen@linux.vnet.ibm.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
10f7621588
commit
8cb31cfc94
@ -1225,38 +1225,42 @@ static int do_reset(struct ibmvnic_adapter *adapter,
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
/* remove the closed state so when we call open it appears
|
||||
* we are coming from the probed state.
|
||||
*/
|
||||
adapter->state = VNIC_PROBED;
|
||||
|
||||
release_resources(adapter);
|
||||
release_sub_crqs(adapter);
|
||||
release_crq_queue(adapter);
|
||||
|
||||
rc = ibmvnic_init(adapter);
|
||||
if (rc)
|
||||
return 0;
|
||||
|
||||
/* If the adapter was in PROBE state prior to the reset, exit here. */
|
||||
if (reset_state == VNIC_PROBED)
|
||||
return 0;
|
||||
|
||||
rc = ibmvnic_login(netdev);
|
||||
if (rc) {
|
||||
if (adapter->reset_reason != VNIC_RESET_NON_FATAL) {
|
||||
/* remove the closed state so when we call open it appears
|
||||
* we are coming from the probed state.
|
||||
*/
|
||||
adapter->state = VNIC_PROBED;
|
||||
return 0;
|
||||
|
||||
release_resources(adapter);
|
||||
release_sub_crqs(adapter);
|
||||
release_crq_queue(adapter);
|
||||
|
||||
rc = ibmvnic_init(adapter);
|
||||
if (rc)
|
||||
return 0;
|
||||
|
||||
/* If the adapter was in PROBE state prior to the reset,
|
||||
* exit here.
|
||||
*/
|
||||
if (reset_state == VNIC_PROBED)
|
||||
return 0;
|
||||
|
||||
rc = ibmvnic_login(netdev);
|
||||
if (rc) {
|
||||
adapter->state = VNIC_PROBED;
|
||||
return 0;
|
||||
}
|
||||
|
||||
rtnl_lock();
|
||||
rc = init_resources(adapter);
|
||||
rtnl_unlock();
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
if (reset_state == VNIC_CLOSED)
|
||||
return 0;
|
||||
}
|
||||
|
||||
rtnl_lock();
|
||||
rc = init_resources(adapter);
|
||||
rtnl_unlock();
|
||||
if (rc)
|
||||
return rc;
|
||||
|
||||
if (reset_state == VNIC_CLOSED)
|
||||
return 0;
|
||||
|
||||
rc = __ibmvnic_open(netdev);
|
||||
if (rc) {
|
||||
if (list_empty(&adapter->rwi_list))
|
||||
@ -2763,6 +2767,8 @@ static void handle_error_indication(union ibmvnic_crq *crq,
|
||||
|
||||
if (crq->error_indication.flags & IBMVNIC_FATAL_ERROR)
|
||||
ibmvnic_reset(adapter, VNIC_RESET_FATAL);
|
||||
else
|
||||
ibmvnic_reset(adapter, VNIC_RESET_NON_FATAL);
|
||||
}
|
||||
|
||||
static void handle_change_mac_rsp(union ibmvnic_crq *crq,
|
||||
|
@ -925,6 +925,7 @@ enum vnic_state {VNIC_PROBING = 1,
|
||||
enum ibmvnic_reset_reason {VNIC_RESET_FAILOVER = 1,
|
||||
VNIC_RESET_MOBILITY,
|
||||
VNIC_RESET_FATAL,
|
||||
VNIC_RESET_NON_FATAL,
|
||||
VNIC_RESET_TIMEOUT};
|
||||
|
||||
struct ibmvnic_rwi {
|
||||
|
Loading…
Reference in New Issue
Block a user