:orphan: .. index:: pair: struct; scsi_fixed_sense_data .. _doxid-structscsi__fixed__sense__data: struct scsi_fixed_sense_data ============================ .. toctree:: :hidden: The format of the data returned by the SCSI REQUEST SENSE command. SCSI Primary Commands - 2 (SPC-2) ANSI Project T10/1236-D Revision 20 18 July 2001 page 135 7.20.1 REQUEST SENSE command introduction "Device servers shall be capable of returning 18 bytes of data in response to a REQUEST SENSE command." page 136 7.20.2 Sense data format Table 102 Response codes 70h and 71h sense data format This structure is the minimum a device can return. The file linux/drivers/scsi/scsi.h defines the maximum acceptable as: #define SCSI_SENSE_BUFFERSIZE 64 unsigned char sr_sense_buffer[SCSI_SENSE_BUFFERSIZE]; unsigned char sense_buffer[SCSI_SENSE_BUFFERSIZE]; .. ref-code-block:: cpp :class: doxyrest-overview-code-block #include struct scsi_fixed_sense_data { // fields uint8_t :target:`response`; uint8_t :target:`obsolete`; uint8_t :target:`sense_key_and_flags`; uint32_t :target:`information`; uint8_t :target:`additional_length`; uint32_t :target:`csi`; uint8_t :target:`asc`; uint8_t :target:`ascq`; uint8_t :target:`fruc`; uint8_t :target:`sks`[3]; };