diff options
author | mjacob <mjacob@FreeBSD.org> | 2001-02-27 00:14:39 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2001-02-27 00:14:39 +0000 |
commit | 56ff8b21306b7ea2a31f62cd08e1d70f0d1b8fc0 (patch) | |
tree | 21cf0f3b54bede6184e636a33c80ef6da57af9be /sys/dev/isp/isp_target.h | |
parent | 3d95b58cac052a546c50e19bcf2ffaee25d0b127 (diff) | |
download | FreeBSD-src-56ff8b21306b7ea2a31f62cd08e1d70f0d1b8fc0.zip FreeBSD-src-56ff8b21306b7ea2a31f62cd08e1d70f0d1b8fc0.tar.gz |
Fix at2_entry_t to reflect what the firmware actually writes (instead
of just deriving from SCSI at_entry_t). In this case, there is no
'suggested sense' for FC cards.
Diffstat (limited to 'sys/dev/isp/isp_target.h')
-rw-r--r-- | sys/dev/isp/isp_target.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h index 6dac18e..8600024 100644 --- a/sys/dev/isp/isp_target.h +++ b/sys/dev/isp/isp_target.h @@ -262,9 +262,8 @@ typedef struct { u_int8_t at_cdb[ATIO2_CDBLEN]; /* received CDB */ u_int32_t at_datalen; /* allocated data len */ u_int16_t at_scclun; /* SCC Lun or reserved */ - u_int16_t at_reserved2; - u_int16_t at_scsi_status; - u_int8_t at_sense[QLTM_SENSELEN]; + u_int16_t at_reserved2[10]; + u_int16_t at_oxid; } at2_entry_t; #define ATIO2_WWPN_OFFSET 0x2A |