diff options
author | mav <mav@FreeBSD.org> | 2014-09-18 21:39:00 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2014-09-18 21:39:00 +0000 |
commit | 0db50d6959988aaaff9230c6f5ff7b05f1bd3102 (patch) | |
tree | 62d1a61b8f26ec0e134d870306a47baf86fcbe32 /sys/cam/scsi/scsi_all.h | |
parent | 10a9d2fef61d5e843e237644657d9d39f8288fe1 (diff) | |
download | FreeBSD-src-0db50d6959988aaaff9230c6f5ff7b05f1bd3102.zip FreeBSD-src-0db50d6959988aaaff9230c6f5ff7b05f1bd3102.tar.gz |
Add support for "no Data-Out Buffer" (NDOB) flag of WRITE SAME (16) command.
Diffstat (limited to 'sys/cam/scsi/scsi_all.h')
-rw-r--r-- | sys/cam/scsi/scsi_all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/cam/scsi/scsi_all.h b/sys/cam/scsi/scsi_all.h index bd66ab3..db2ee80 100644 --- a/sys/cam/scsi/scsi_all.h +++ b/sys/cam/scsi/scsi_all.h @@ -1030,6 +1030,7 @@ struct scsi_write_same_16 { uint8_t opcode; uint8_t byte2; +#define SWS_NDOB 0x01 uint8_t addr[8]; uint8_t length[4]; uint8_t group; |