diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-01-03 08:54:51 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-01-03 08:54:51 +0000 |
commit | d1d5787ce47e7642488a7512508de8ede239670b (patch) | |
tree | 487de36352713a00371e3e68d24c6256f255edc4 /sys/cam | |
parent | f6f1ecf575981dce00829b62e3f9cc92ac736ec8 (diff) | |
download | FreeBSD-src-d1d5787ce47e7642488a7512508de8ede239670b.zip FreeBSD-src-d1d5787ce47e7642488a7512508de8ede239670b.tar.gz |
Widen width of tag && initiator ids to u_int
(from u_int8_t) in ccb_accept_tio structure. This
matches usage elsewhere and also allows me to
overload the tag id with the RX_ID for fibre
channel target mode.
Reviewed by: gibbs@freebsd.org
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam_ccb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cam/cam_ccb.h b/sys/cam/cam_ccb.h index aa8e6d4..67f98d9 100644 --- a/sys/cam/cam_ccb.h +++ b/sys/cam/cam_ccb.h @@ -580,8 +580,8 @@ struct ccb_accept_tio { cdb_t cdb_io; /* Union for CDB bytes/pointer */ u_int8_t cdb_len; /* Number of bytes for the CDB */ u_int8_t tag_action; /* What to do for tag queueing */ - u_int8_t tag_id; /* tag id from initator (target mode) */ - u_int8_t init_id; /* initiator id of who selected */ + u_int tag_id; /* tag id from initator (target mode) */ + u_int init_id; /* initiator id of who selected */ }; /* Release SIM Queue */ |