mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 09:11:07 -04:00
Fix FCP_CMD LENGTH mask in ATIO7 IOCB.
This caused "long IU length (16384) ignored" errors following by others. MFC after: 2 weeks
This commit is contained in:
parent
89f0b8c618
commit
d2a2ccbc65
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ isp_target_notify(ispsoftc_t *isp, void *vptr, uint32_t *optrp)
|
|||
* Check for and do something with commands whose
|
||||
* IULEN extends past a single queue entry.
|
||||
*/
|
||||
len = at7iop->at_ta_len & 0xfffff;
|
||||
len = at7iop->at_ta_len & 0x0fff;
|
||||
if (len > (QENTRY_LEN - 8)) {
|
||||
len -= (QENTRY_LEN - 8);
|
||||
isp_prt(isp, ISP_LOGINFO, "long IU length (%d) ignored", len);
|
||||
|
|
|
|||
Loading…
Reference in a new issue