diff options
author | mjacob <mjacob@FreeBSD.org> | 2003-02-16 01:37:51 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2003-02-16 01:37:51 +0000 |
commit | 3d5956dc2206dac332987481047a125abc1d40d7 (patch) | |
tree | fff3841421f35a7d41daac7c8da15cde662184c4 /sys/dev/isp | |
parent | 6765821484478d5ffa49a67346f1c863c5b1966e (diff) | |
download | FreeBSD-src-3d5956dc2206dac332987481047a125abc1d40d7.zip FreeBSD-src-3d5956dc2206dac332987481047a125abc1d40d7.tar.gz |
Make sure we propagate rxid && iid in isp_target_put_atio
Diffstat (limited to 'sys/dev/isp')
-rw-r--r-- | sys/dev/isp/isp_target.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/isp/isp_target.c b/sys/dev/isp/isp_target.c index f599052..1c6327b 100644 --- a/sys/dev/isp/isp_target.c +++ b/sys/dev/isp/isp_target.c @@ -386,6 +386,8 @@ isp_target_put_atio(struct ispsoftc *isp, void *arg) } else { atun._atio2.at_lun = (u_int8_t) aep->at_lun; } + atun._atio2.at_iid = aep->at_iid; + atun._atoi2.at_rxid = aep->at_rxid; atun._atio2.at_status = CT_OK; } else { at_entry_t *aep = arg; |