svn commit: r290788 - stable/10/sys/dev/isp
Alexander Motin
mav at FreeBSD.org
Fri Nov 13 19:46:26 UTC 2015
Author: mav
Date: Fri Nov 13 19:46:25 2015
New Revision: 290788
URL: https://svnweb.freebsd.org/changeset/base/290788
Log:
MFC r289855: Minor additions to Status Type 0 IOCB.
Modified:
stable/10/sys/dev/isp/isp_library.c
stable/10/sys/dev/isp/ispmbox.h
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/dev/isp/isp_library.c
==============================================================================
--- stable/10/sys/dev/isp/isp_library.c Fri Nov 13 19:45:15 2015 (r290787)
+++ stable/10/sys/dev/isp/isp_library.c Fri Nov 13 19:46:25 2015 (r290788)
@@ -1158,7 +1158,7 @@ isp_get_24xx_response(ispsoftc_t *isp, i
ISP_IOXGET_32(isp, &src->req_resid, dst->req_resid);
ISP_IOXGET_16(isp, &src->req_reserved0, dst->req_reserved0);
ISP_IOXGET_16(isp, &src->req_state_flags, dst->req_state_flags);
- ISP_IOXGET_16(isp, &src->req_reserved1, dst->req_reserved1);
+ ISP_IOXGET_16(isp, &src->req_retry_delay, dst->req_retry_delay);
ISP_IOXGET_16(isp, &src->req_scsi_status, dst->req_scsi_status);
ISP_IOXGET_32(isp, &src->req_fcp_residual, dst->req_fcp_residual);
ISP_IOXGET_32(isp, &src->req_sense_len, dst->req_sense_len);
Modified: stable/10/sys/dev/isp/ispmbox.h
==============================================================================
--- stable/10/sys/dev/isp/ispmbox.h Fri Nov 13 19:45:15 2015 (r290787)
+++ stable/10/sys/dev/isp/ispmbox.h Fri Nov 13 19:46:25 2015 (r290788)
@@ -632,7 +632,7 @@ typedef struct {
uint32_t req_resid;
uint16_t req_reserved0;
uint16_t req_state_flags;
- uint16_t req_reserved1;
+ uint16_t req_retry_delay; /* aka Status Qualifier */
uint16_t req_scsi_status;
uint32_t req_fcp_residual;
uint32_t req_sense_len;
@@ -644,11 +644,12 @@ typedef struct {
* For Qlogic 2X00, the high order byte of SCSI status has
* additional meaning.
*/
-#define RQCS_RU 0x800 /* Residual Under */
-#define RQCS_RO 0x400 /* Residual Over */
+#define RQCS_CR 0x1000 /* Confirmation Request */
+#define RQCS_RU 0x0800 /* Residual Under */
+#define RQCS_RO 0x0400 /* Residual Over */
#define RQCS_RESID (RQCS_RU|RQCS_RO)
-#define RQCS_SV 0x200 /* Sense Length Valid */
-#define RQCS_RV 0x100 /* FCP Response Length Valid */
+#define RQCS_SV 0x0200 /* Sense Length Valid */
+#define RQCS_RV 0x0100 /* FCP Response Length Valid */
/*
* CT Passthru IOCB
More information about the svn-src-stable
mailing list