diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-01-17 06:11:33 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-01-17 06:11:33 +0000 |
commit | 7522ad09021a82d05d7fac0cfe336625e3749123 (patch) | |
tree | 8753387a5e74bf1b354723ee326fa32834bcdcc0 /sys/cam | |
parent | 61f9c80344beb8905e7302e33cede7ffadf5ced5 (diff) | |
download | FreeBSD-src-7522ad09021a82d05d7fac0cfe336625e3749123.zip FreeBSD-src-7522ad09021a82d05d7fac0cfe336625e3749123.tar.gz |
Add a CAM_SENT_STATUS for use in target mode. JHK approved.
Reviewed by: gibbs@freebsd.org, ken@freebsd.org
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/cam/cam.h b/sys/cam/cam.h index 28964bc..e20673c 100644 --- a/sys/cam/cam.h +++ b/sys/cam/cam.h @@ -149,7 +149,10 @@ typedef enum { CAM_RELEASE_SIMQ = 0x100,/* SIM ready to take more commands */ CAM_SIM_QUEUED = 0x200,/* SIM has this command in it's queue */ - CAM_STATUS_MASK = 0x3F /* Mask bits for just the status # */ + CAM_STATUS_MASK = 0x3F, /* Mask bits for just the status # */ + + /* Target Specific Adjunct Status */ + CAM_SENT_SENSE = 0x40000000 /* sent sense with status */ } cam_status; __BEGIN_DECLS |