* Halil Pasic <pa...@linux.vnet.ibm.com> [2017-09-19 20:27:41 +0200]:
[...] > diff --git a/include/hw/s390x/css.h b/include/hw/s390x/css.h > index 0653d3c9be..078356e94c 100644 > --- a/include/hw/s390x/css.h > +++ b/include/hw/s390x/css.h > @@ -75,6 +75,29 @@ typedef struct CMBE { > uint32_t reserved[7]; > } QEMU_PACKED CMBE; > > +typedef enum CcwDataStreamOp { > + CDS_OP_R = 0, /* read, false when used as is_write */ > + CDS_OP_W = 1, /* write, true when used as is_write */ > + CDS_OP_A = 2 /* advance, should not be used as is_write */ Looks good to me. > +} CcwDataStreamOp; > + > [...] -- Dong Jia Shi