Commit 14194054 authored by Joe Eykholt's avatar Joe Eykholt Committed by James Bottomley

[SCSI] libfc: rename rport state "NONE" to "DELETE".

State RPORT_ST_NONE was intented to be an invalid state (0), never used.
This was a misguided attempt to be sure it was always initialized.
Having an extra state meaning nothing requires switch statements to
have a case covering that state.

State NONE has been used instead to mean the remote port is being deleted.
Changing the name to RPORT_ST_DELETE.
Signed-off-by: default avatarJoe Eykholt <jeykholt@cisco.com>
Signed-off-by: default avatarRobert Love <robert.w.love@intel.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@suse.de>
parent 84b05445
...@@ -77,13 +77,13 @@ static void fc_rport_error_retry(struct fc_rport *, struct fc_frame *); ...@@ -77,13 +77,13 @@ static void fc_rport_error_retry(struct fc_rport *, struct fc_frame *);
static void fc_rport_work(struct work_struct *); static void fc_rport_work(struct work_struct *);
static const char *fc_rport_state_names[] = { static const char *fc_rport_state_names[] = {
[RPORT_ST_NONE] = "None",
[RPORT_ST_INIT] = "Init", [RPORT_ST_INIT] = "Init",
[RPORT_ST_PLOGI] = "PLOGI", [RPORT_ST_PLOGI] = "PLOGI",
[RPORT_ST_PRLI] = "PRLI", [RPORT_ST_PRLI] = "PRLI",
[RPORT_ST_RTV] = "RTV", [RPORT_ST_RTV] = "RTV",
[RPORT_ST_READY] = "Ready", [RPORT_ST_READY] = "Ready",
[RPORT_ST_LOGO] = "LOGO", [RPORT_ST_LOGO] = "LOGO",
[RPORT_ST_DELETE] = "Delete",
}; };
static void fc_rport_rogue_destroy(struct device *dev) static void fc_rport_rogue_destroy(struct device *dev)
...@@ -326,8 +326,8 @@ int fc_rport_logoff(struct fc_rport *rport) ...@@ -326,8 +326,8 @@ int fc_rport_logoff(struct fc_rport *rport)
FC_RPORT_DBG(rport, "Remove port\n"); FC_RPORT_DBG(rport, "Remove port\n");
if (rdata->rp_state == RPORT_ST_NONE) { if (rdata->rp_state == RPORT_ST_DELETE) {
FC_RPORT_DBG(rport, "Port in NONE state, not removing\n"); FC_RPORT_DBG(rport, "Port in Delete state, not removing\n");
mutex_unlock(&rdata->rp_mutex); mutex_unlock(&rdata->rp_mutex);
goto out; goto out;
} }
...@@ -335,10 +335,10 @@ int fc_rport_logoff(struct fc_rport *rport) ...@@ -335,10 +335,10 @@ int fc_rport_logoff(struct fc_rport *rport)
fc_rport_enter_logo(rport); fc_rport_enter_logo(rport);
/* /*
* Change the state to NONE so that we discard * Change the state to Delete so that we discard
* the response. * the response.
*/ */
fc_rport_state_enter(rport, RPORT_ST_NONE); fc_rport_state_enter(rport, RPORT_ST_DELETE);
mutex_unlock(&rdata->rp_mutex); mutex_unlock(&rdata->rp_mutex);
...@@ -405,7 +405,7 @@ static void fc_rport_timeout(struct work_struct *work) ...@@ -405,7 +405,7 @@ static void fc_rport_timeout(struct work_struct *work)
break; break;
case RPORT_ST_READY: case RPORT_ST_READY:
case RPORT_ST_INIT: case RPORT_ST_INIT:
case RPORT_ST_NONE: case RPORT_ST_DELETE:
break; break;
} }
...@@ -433,14 +433,14 @@ static void fc_rport_error(struct fc_rport *rport, struct fc_frame *fp) ...@@ -433,14 +433,14 @@ static void fc_rport_error(struct fc_rport *rport, struct fc_frame *fp)
case RPORT_ST_PRLI: case RPORT_ST_PRLI:
case RPORT_ST_LOGO: case RPORT_ST_LOGO:
rdata->event = RPORT_EV_FAILED; rdata->event = RPORT_EV_FAILED;
fc_rport_state_enter(rport, RPORT_ST_NONE); fc_rport_state_enter(rport, RPORT_ST_DELETE);
queue_work(rport_event_queue, queue_work(rport_event_queue,
&rdata->event_work); &rdata->event_work);
break; break;
case RPORT_ST_RTV: case RPORT_ST_RTV:
fc_rport_enter_ready(rport); fc_rport_enter_ready(rport);
break; break;
case RPORT_ST_NONE: case RPORT_ST_DELETE:
case RPORT_ST_READY: case RPORT_ST_READY:
case RPORT_ST_INIT: case RPORT_ST_INIT:
break; break;
...@@ -652,7 +652,7 @@ static void fc_rport_prli_resp(struct fc_seq *sp, struct fc_frame *fp, ...@@ -652,7 +652,7 @@ static void fc_rport_prli_resp(struct fc_seq *sp, struct fc_frame *fp,
} else { } else {
FC_RPORT_DBG(rport, "Bad ELS response for PRLI command\n"); FC_RPORT_DBG(rport, "Bad ELS response for PRLI command\n");
rdata->event = RPORT_EV_FAILED; rdata->event = RPORT_EV_FAILED;
fc_rport_state_enter(rport, RPORT_ST_NONE); fc_rport_state_enter(rport, RPORT_ST_DELETE);
queue_work(rport_event_queue, &rdata->event_work); queue_work(rport_event_queue, &rdata->event_work);
} }
...@@ -703,7 +703,7 @@ static void fc_rport_logo_resp(struct fc_seq *sp, struct fc_frame *fp, ...@@ -703,7 +703,7 @@ static void fc_rport_logo_resp(struct fc_seq *sp, struct fc_frame *fp,
} else { } else {
FC_RPORT_DBG(rport, "Bad ELS response for LOGO command\n"); FC_RPORT_DBG(rport, "Bad ELS response for LOGO command\n");
rdata->event = RPORT_EV_LOGO; rdata->event = RPORT_EV_LOGO;
fc_rport_state_enter(rport, RPORT_ST_NONE); fc_rport_state_enter(rport, RPORT_ST_DELETE);
queue_work(rport_event_queue, &rdata->event_work); queue_work(rport_event_queue, &rdata->event_work);
} }
...@@ -1012,7 +1012,7 @@ static void fc_rport_recv_plogi_req(struct fc_rport *rport, ...@@ -1012,7 +1012,7 @@ static void fc_rport_recv_plogi_req(struct fc_rport *rport,
"- ignored for now\n", rdata->rp_state); "- ignored for now\n", rdata->rp_state);
/* XXX TBD - should reset */ /* XXX TBD - should reset */
break; break;
case RPORT_ST_NONE: case RPORT_ST_DELETE:
default: default:
FC_RPORT_DBG(rport, "Received PLOGI in unexpected " FC_RPORT_DBG(rport, "Received PLOGI in unexpected "
"state %d\n", rdata->rp_state); "state %d\n", rdata->rp_state);
...@@ -1238,7 +1238,7 @@ static void fc_rport_recv_prlo_req(struct fc_rport *rport, struct fc_seq *sp, ...@@ -1238,7 +1238,7 @@ static void fc_rport_recv_prlo_req(struct fc_rport *rport, struct fc_seq *sp,
FC_RPORT_DBG(rport, "Received PRLO request while in state %s\n", FC_RPORT_DBG(rport, "Received PRLO request while in state %s\n",
fc_rport_state(rport)); fc_rport_state(rport));
if (rdata->rp_state == RPORT_ST_NONE) { if (rdata->rp_state == RPORT_ST_DELETE) {
fc_frame_free(fp); fc_frame_free(fp);
return; return;
} }
...@@ -1271,13 +1271,13 @@ static void fc_rport_recv_logo_req(struct fc_rport *rport, struct fc_seq *sp, ...@@ -1271,13 +1271,13 @@ static void fc_rport_recv_logo_req(struct fc_rport *rport, struct fc_seq *sp,
FC_RPORT_DBG(rport, "Received LOGO request while in state %s\n", FC_RPORT_DBG(rport, "Received LOGO request while in state %s\n",
fc_rport_state(rport)); fc_rport_state(rport));
if (rdata->rp_state == RPORT_ST_NONE) { if (rdata->rp_state == RPORT_ST_DELETE) {
fc_frame_free(fp); fc_frame_free(fp);
return; return;
} }
rdata->event = RPORT_EV_LOGO; rdata->event = RPORT_EV_LOGO;
fc_rport_state_enter(rport, RPORT_ST_NONE); fc_rport_state_enter(rport, RPORT_ST_DELETE);
queue_work(rport_event_queue, &rdata->event_work); queue_work(rport_event_queue, &rdata->event_work);
lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL); lport->tt.seq_els_rsp_send(sp, ELS_LS_ACC, NULL);
......
...@@ -147,13 +147,13 @@ enum fc_disc_event { ...@@ -147,13 +147,13 @@ enum fc_disc_event {
}; };
enum fc_rport_state { enum fc_rport_state {
RPORT_ST_NONE = 0,
RPORT_ST_INIT, /* initialized */ RPORT_ST_INIT, /* initialized */
RPORT_ST_PLOGI, /* waiting for PLOGI completion */ RPORT_ST_PLOGI, /* waiting for PLOGI completion */
RPORT_ST_PRLI, /* waiting for PRLI completion */ RPORT_ST_PRLI, /* waiting for PRLI completion */
RPORT_ST_RTV, /* waiting for RTV completion */ RPORT_ST_RTV, /* waiting for RTV completion */
RPORT_ST_READY, /* ready for use */ RPORT_ST_READY, /* ready for use */
RPORT_ST_LOGO, /* port logout sent */ RPORT_ST_LOGO, /* port logout sent */
RPORT_ST_DELETE, /* port being deleted */
}; };
enum fc_rport_trans_state { enum fc_rport_trans_state {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment