diff options
author | mjacob <mjacob@FreeBSD.org> | 2002-03-21 21:10:16 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2002-03-21 21:10:16 +0000 |
commit | f871caa64260041aff351887f9b08c3902a94dc4 (patch) | |
tree | aceea3c3076a131cbc41c2d9a837c1df5eaa7c2e /sys/dev/isp/isp_target.h | |
parent | 15e963f1603b80258cd945e79f1194e029b58d6c (diff) | |
download | FreeBSD-src-f871caa64260041aff351887f9b08c3902a94dc4.zip FreeBSD-src-f871caa64260041aff351887f9b08c3902a94dc4.tar.gz |
Limit fabric search to a default 256 entries. This will all go away
soon because it's just getting harder and harder to find switches
that correctly implement the GET ALL NEXT subcommands for the SNS
protocol.
Latch up result out pointer and set a busy flag when we're looking
at the response queue. This allows for a cleaner way to make sure
we don't get multiple CPUs trying to read the same response queue
entries.
Change how isp_handle_other_response returns values (clarity).
Make PORT UNAVAILABLE the same as PORT LOGOUT (force a LIP).
Do some formatting changes.
MFC after: 0 days
Diffstat (limited to 'sys/dev/isp/isp_target.h')
-rw-r--r-- | sys/dev/isp/isp_target.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h index f911a17..5362987 100644 --- a/sys/dev/isp/isp_target.h +++ b/sys/dev/isp/isp_target.h @@ -409,9 +409,9 @@ typedef struct { isphdr_t ct_header; u_int16_t ct_reserved; u_int16_t ct_fwhandle; /* just to match CTIO */ - u_int8_t ct_lun; /* lun */ - u_int8_t ct_iid; /* initiator id */ - u_int16_t ct_rxid; /* response ID */ + u_int8_t ct_lun; /* lun */ + u_int8_t ct_iid; /* initiator id */ + u_int16_t ct_rxid; /* response ID */ u_int16_t ct_flags; u_int16_t ct_status; /* isp status */ u_int16_t ct_timeout; |