diff options
Diffstat (limited to 'drivers/scsi/libfc/fc_exch.c')
-rw-r--r-- | drivers/scsi/libfc/fc_exch.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/scsi/libfc/fc_exch.c b/drivers/scsi/libfc/fc_exch.c index 505825b6124..992af05aacf 100644 --- a/drivers/scsi/libfc/fc_exch.c +++ b/drivers/scsi/libfc/fc_exch.c | |||
@@ -281,7 +281,7 @@ static void fc_exch_release(struct fc_exch *ep) | |||
281 | ep->destructor(&ep->seq, ep->arg); | 281 | ep->destructor(&ep->seq, ep->arg); |
282 | if (ep->lp->tt.exch_put) | 282 | if (ep->lp->tt.exch_put) |
283 | ep->lp->tt.exch_put(ep->lp, mp, ep->xid); | 283 | ep->lp->tt.exch_put(ep->lp, mp, ep->xid); |
284 | WARN_ON(!ep->esb_stat & ESB_ST_COMPLETE); | 284 | WARN_ON(!(ep->esb_stat & ESB_ST_COMPLETE)); |
285 | mempool_free(ep, mp->ep_pool); | 285 | mempool_free(ep, mp->ep_pool); |
286 | } | 286 | } |
287 | } | 287 | } |
@@ -489,7 +489,7 @@ static u16 fc_em_alloc_xid(struct fc_exch_mgr *mp, const struct fc_frame *fp) | |||
489 | struct fc_exch *ep = NULL; | 489 | struct fc_exch *ep = NULL; |
490 | 490 | ||
491 | if (mp->max_read) { | 491 | if (mp->max_read) { |
492 | if (fc_frame_is_read(fp)) { | 492 | if (fc_fcp_is_read(fr_fsp(fp))) { |
493 | min = mp->min_xid; | 493 | min = mp->min_xid; |
494 | max = mp->max_read; | 494 | max = mp->max_read; |
495 | plast = &mp->last_read; | 495 | plast = &mp->last_read; |
@@ -1841,6 +1841,8 @@ struct fc_seq *fc_exch_seq_send(struct fc_lport *lp, | |||
1841 | fc_exch_setup_hdr(ep, fp, ep->f_ctl); | 1841 | fc_exch_setup_hdr(ep, fp, ep->f_ctl); |
1842 | sp->cnt++; | 1842 | sp->cnt++; |
1843 | 1843 | ||
1844 | fc_fcp_ddp_setup(fr_fsp(fp), ep->xid); | ||
1845 | |||
1844 | if (unlikely(lp->tt.frame_send(lp, fp))) | 1846 | if (unlikely(lp->tt.frame_send(lp, fp))) |
1845 | goto err; | 1847 | goto err; |
1846 | 1848 | ||