diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c b/usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c index 45034ad251..22243d4608 100644 --- a/usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c +++ b/usr/src/uts/common/io/fibre-channel/fca/emlxs/emlxs_sli4.c @@ -2815,7 +2815,7 @@ emlxs_sli4_prep_fcp_iocb(emlxs_port_t *port, emlxs_buf_t *sbp, int channel) } sbp->class = wqe->Class; wqe->RequestTag = iotag; - wqe->CQId = (uint16_t)0xffff; /* default CQ for response */ + wqe->CQId = 0x3ff; /* default CQ for response */ return (FC_SUCCESS); } /* emlxs_sli4_prep_fcp_iocb() */ @@ -3268,7 +3268,7 @@ emlxs_sli4_prep_ct_iocb(emlxs_port_t *port, emlxs_buf_t *sbp) } sbp->class = wqe->Class; wqe->RequestTag = xp->iotag; - wqe->CQId = (uint16_t)0xffff; /* default CQ for response */ + wqe->CQId = 0x3ff; return (FC_SUCCESS); } /* emlxs_sli4_prep_ct_iocb() */ |