summaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorSteve Ma2009-05-06 19:52:29 +0200
committerJames Bottomley2009-06-08 20:29:11 +0200
commit30121d14f503dac056ee7f68d99eb5d548899b59 (patch)
tree558f950c8bf620347344b84d0bff60be464366db /drivers/scsi
parent[SCSI] libfc: use DID_ERROR when we have internall aborted command (diff)
downloadkernel-qcow2-linux-30121d14f503dac056ee7f68d99eb5d548899b59.tar.gz
kernel-qcow2-linux-30121d14f503dac056ee7f68d99eb5d548899b59.tar.xz
kernel-qcow2-linux-30121d14f503dac056ee7f68d99eb5d548899b59.zip
[SCSI] libfc: Check if exchange is completed when receiving a sequence
When a sequence is received in response to an exchange we issued previously, we should check to see if the exchange has completed. If yes, the sequence should be discarded. Since the exchange might be still in the completion process, it should be untouched. Signed-off-by: Steve Ma <steve.ma@intel.com> Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/libfc/fc_exch.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/scsi/libfc/fc_exch.c b/drivers/scsi/libfc/fc_exch.c
index 992af05aacf1..7af9bceb8aa9 100644
--- a/drivers/scsi/libfc/fc_exch.c
+++ b/drivers/scsi/libfc/fc_exch.c
@@ -1159,6 +1159,10 @@ static void fc_exch_recv_seq_resp(struct fc_exch_mgr *mp, struct fc_frame *fp)
atomic_inc(&mp->stats.xid_not_found);
goto out;
}
+ if (ep->esb_stat & ESB_ST_COMPLETE) {
+ atomic_inc(&mp->stats.xid_not_found);
+ goto out;
+ }
if (ep->rxid == FC_XID_UNKNOWN)
ep->rxid = ntohs(fh->fh_rx_id);
if (ep->sid != 0 && ep->sid != ntoh24(fh->fh_d_id)) {