'\" te .\" Copyright (c) 2006, Sun Microsystems, Inc., All Rights Reserved .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License. .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License. .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner] .TH SCSI_VALIDATE_SENSE 9F "Jun 29, 2006" .SH NAME scsi_validate_sense \- find descriptor in SCSI sense data .SH SYNOPSIS .LP .nf #include \fBint\fR \fBscsi_validate_sense\fR(\fBuint8_t *\fR\fIsense_buffer\fR, \fBint\fR \fIsense_buf_len\fR, \fBint *\fR\fIflags\fR); .fi .SH INTERFACE LEVEL .sp .LP Solaris DDI specific (Solaris DDI). .SH PARAMETERS .sp .ne 2 .na \fB\fIsense_buffer\fR\fR .ad .RS 17n Pointer to a buffer containing \fBSCSI\fR sense data. The sense data is expected in wire format starting at the response code. .RE .sp .ne 2 .na \fB\fIsense_buf_len\fR\fR .ad .RS 17n Length of sense buffer in bytes. .RE .sp .ne 2 .na \fB\fIflags\fR\fR .ad .RS 17n Returns additional properties of the sense data. .RE .SH DESCRIPTION .sp .LP The \fBscsi_validate_sense()\fR function returns the format of the sense data contained in the provided sense buffer. If the response code field in the sense data is not recognized or if there is not enough sense data to include sense key, asc, and ascq then \fBscsi_validate_sense()\fR returns \fBSENSE_UNUSABLE\fR. If the buffer contains usable sense data in fixed format, the function returns \fBSENSE_FIXED_FORMAT\fR. If the buffer contains usable sense data in descriptor format, the function returns \fBSENSE_DESCR_FORMAT\fR. .sp .LP The following flags may be set as appropriate depending on the sense data: .sp .ne 2 .na \fB\fBSNS_BUF_OVERFLOW\fR\fR .ad .RS 20n The sense data buffer provided for the request is too small to hold all the sense data. .RE .sp .ne 2 .na \fB\fBSNS_BUF_DEFERRED\fR\fR .ad .RS 20n The sense data contained in the buffer relates to an error that has occurred during the processing of a successfully completed command, such as a cached write that could not be commited to the media. .RE .SH RETURN VALUES .sp .ne 2 .na \fB\fBSENSE_UNUSABLE\fR\fR .ad .RS 22n The response code from the sense data is unrecognized or not enough sense data present to provide the \fBsense key\fR, \fBasc\fR, and \fBascq\fR. .RE .sp .ne 2 .na \fB\fBSENSE_FIXED_FORMAT\fR\fR .ad .RS 22n The sense data in the buffer is in "fixed format". .RE .sp .ne 2 .na \fB\fBSENSE_DESCR_FORMAT\fR\fR .ad .RS 22n The sense data in the buffer is in "descriptor format". .RE .SH CONTEXT .sp .LP The \fBscsi_validate_sense()\fR function can be called from user or interrupt context. .SH SEE ALSO .sp .LP \fBscsi_ext_sense_fields\fR(9F), \fBscsi_find_sense_descr\fR(9F), \fBscsi_sense_asc\fR(9F), \fBscsi_sense_ascq\fR(9F), \fBscsi_sense_cmdspecific_uint64\fR(9F), \fBscsi_sense_info_uint64\fR(9F), \fBscsi_sense_key\fR(9F)