diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-04 18:15:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-04 18:15:15 -0400 |
commit | 03da30986793385af57eeca3296253c887b742e6 (patch) | |
tree | 9c46dbe51c9d0856990649dd917ab45474b7be87 /arch/s390 | |
parent | 6ba74014c1ab0e37af7de6f64b4eccbbae3cb9e7 (diff) | |
parent | 339f4f4eab80caa6cf0d39fb057ad6ddb84ba91e (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (276 commits)
[SCSI] zfcp: Trigger logging in the FCP channel on qdio error conditions
[SCSI] zfcp: Introduce experimental support for DIF/DIX
[SCSI] zfcp: Enable data division support for FCP devices
[SCSI] zfcp: Prevent access on uninitialized memory.
[SCSI] zfcp: Post events through FC transport class
[SCSI] zfcp: Cleanup QDIO attachment and improve processing.
[SCSI] zfcp: Cleanup function parameters for sbal value.
[SCSI] zfcp: Use correct width for timer_interval field
[SCSI] zfcp: Remove SCSI device when removing unit
[SCSI] zfcp: Use memdup_user and kstrdup
[SCSI] zfcp: Fix retry after failed "open port" erp action
[SCSI] zfcp: Fail erp after timeout
[SCSI] zfcp: Use forced_reopen in terminate_rport_io callback
[SCSI] zfcp: Register SCSI devices after successful fc_remote_port_add
[SCSI] zfcp: Do not try "forced close" when port is already closed
[SCSI] zfcp: Do not unblock rport from REOPEN_PORT_FORCED
[SCSI] sd: add support for runtime PM
[SCSI] implement runtime Power Management
[SCSI] convert to the new PM framework
[SCSI] Unify SAM_ and SAM_STAT_ macros
...
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/include/asm/qdio.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/s390/include/asm/qdio.h b/arch/s390/include/asm/qdio.h index 0eaae6260274..2ba630276295 100644 --- a/arch/s390/include/asm/qdio.h +++ b/arch/s390/include/asm/qdio.h | |||
@@ -84,6 +84,7 @@ struct qdr { | |||
84 | 84 | ||
85 | #define QIB_AC_OUTBOUND_PCI_SUPPORTED 0x40 | 85 | #define QIB_AC_OUTBOUND_PCI_SUPPORTED 0x40 |
86 | #define QIB_RFLAGS_ENABLE_QEBSM 0x80 | 86 | #define QIB_RFLAGS_ENABLE_QEBSM 0x80 |
87 | #define QIB_RFLAGS_ENABLE_DATA_DIV 0x02 | ||
87 | 88 | ||
88 | /** | 89 | /** |
89 | * struct qib - queue information block (QIB) | 90 | * struct qib - queue information block (QIB) |
@@ -284,6 +285,9 @@ struct slsb { | |||
284 | u8 val[QDIO_MAX_BUFFERS_PER_Q]; | 285 | u8 val[QDIO_MAX_BUFFERS_PER_Q]; |
285 | } __attribute__ ((packed, aligned(256))); | 286 | } __attribute__ ((packed, aligned(256))); |
286 | 287 | ||
288 | #define CHSC_AC2_DATA_DIV_AVAILABLE 0x0010 | ||
289 | #define CHSC_AC2_DATA_DIV_ENABLED 0x0002 | ||
290 | |||
287 | struct qdio_ssqd_desc { | 291 | struct qdio_ssqd_desc { |
288 | u8 flags; | 292 | u8 flags; |
289 | u8:8; | 293 | u8:8; |
@@ -332,6 +336,7 @@ typedef void qdio_handler_t(struct ccw_device *, unsigned int, int, | |||
332 | * @adapter_name: name for the adapter | 336 | * @adapter_name: name for the adapter |
333 | * @qib_param_field_format: format for qib_parm_field | 337 | * @qib_param_field_format: format for qib_parm_field |
334 | * @qib_param_field: pointer to 128 bytes or NULL, if no param field | 338 | * @qib_param_field: pointer to 128 bytes or NULL, if no param field |
339 | * @qib_rflags: rflags to set | ||
335 | * @input_slib_elements: pointer to no_input_qs * 128 words of data or NULL | 340 | * @input_slib_elements: pointer to no_input_qs * 128 words of data or NULL |
336 | * @output_slib_elements: pointer to no_output_qs * 128 words of data or NULL | 341 | * @output_slib_elements: pointer to no_output_qs * 128 words of data or NULL |
337 | * @no_input_qs: number of input queues | 342 | * @no_input_qs: number of input queues |
@@ -348,6 +353,7 @@ struct qdio_initialize { | |||
348 | unsigned char adapter_name[8]; | 353 | unsigned char adapter_name[8]; |
349 | unsigned int qib_param_field_format; | 354 | unsigned int qib_param_field_format; |
350 | unsigned char *qib_param_field; | 355 | unsigned char *qib_param_field; |
356 | unsigned char qib_rflags; | ||
351 | unsigned long *input_slib_elements; | 357 | unsigned long *input_slib_elements; |
352 | unsigned long *output_slib_elements; | 358 | unsigned long *output_slib_elements; |
353 | unsigned int no_input_qs; | 359 | unsigned int no_input_qs; |