[SCSI] be2iscsi: Proper checking of state
This patch adds proper checking of value in for hba state. We would be adding more states later on Signed-off-by: Jayamohan Kallickal <jayamohank@serverengines.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
This commit is contained in:
committed by
James Bottomley
parent
230dceb431
commit
5dc1c416b3
@@ -561,7 +561,7 @@ beiscsi_ep_connect(struct Scsi_Host *shost, struct sockaddr *dst_addr,
|
|||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (phba->state) {
|
if (phba->state != BE_ADAPTER_UP) {
|
||||||
ret = -EBUSY;
|
ret = -EBUSY;
|
||||||
SE_DEBUG(DBG_LVL_1, "The Adapter state is Not UP \n");
|
SE_DEBUG(DBG_LVL_1, "The Adapter state is Not UP \n");
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
|
Reference in New Issue
Block a user