search for: indicators2

Displaying 20 results from an estimated 60 matches for "indicators2".

Did you mean: indicators
2019 Apr 26
0
[PATCH 08/10] virtio/s390: add indirection to indicators access
...44 --- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -68,6 +68,16 @@ struct virtio_ccw_device { void *airq_info; }; +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators; +} + +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators2; +} + struct vq_info_block_legacy { __u64 queue; __u32 align; @@ -337,17 +347,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, ccw->cda = (__u32)(unsigned long) thinint_area; } else {...
2019 May 23
0
[PATCH v2 6/8] virtio/s390: add indirection to indicators access
...44 --- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -68,6 +68,16 @@ struct virtio_ccw_device { void *airq_info; }; +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators; +} + +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators2; +} + struct vq_info_block_legacy { __u64 queue; __u32 align; @@ -338,17 +348,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, ccw->cda = (__u32)(unsigned long) thinint_area; } else {...
2019 Jun 12
0
[PATCH v5 6/8] virtio/s390: add indirection to indicators access
...44 --- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -68,6 +68,16 @@ struct virtio_ccw_device { void *airq_info; }; +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators; +} + +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators2; +} + struct vq_info_block_legacy { __u64 queue; __u32 align; @@ -338,17 +348,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, ccw->cda = (__u32)(unsigned long) thinint_area; } else {...
2019 May 29
0
[PATCH v3 6/8] virtio/s390: add indirection to indicators access
...44 --- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -68,6 +68,16 @@ struct virtio_ccw_device { void *airq_info; }; +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators; +} + +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) +{ + return &vcdev->indicators2; +} + struct vq_info_block_legacy { __u64 queue; __u32 align; @@ -338,17 +348,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, ccw->cda = (__u32)(unsigned long) thinint_area; } else {...
2019 May 08
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...rs/s390/virtio/virtio_ccw.c > @@ -68,6 +68,16 @@ struct virtio_ccw_device { > void *airq_info; > }; > > +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) > +{ > + return &vcdev->indicators; > +} > + > +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) > +{ > + return &vcdev->indicators2; > +} > + > struct vq_info_block_legacy { > __u64 queue; > __u32 align; > @@ -337,17 +347,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, > ccw->cda = (...
2019 May 08
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...rs/s390/virtio/virtio_ccw.c > @@ -68,6 +68,16 @@ struct virtio_ccw_device { > void *airq_info; > }; > > +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) > +{ > + return &vcdev->indicators; > +} > + > +static inline unsigned long *indicators2(struct virtio_ccw_device *vcdev) > +{ > + return &vcdev->indicators2; > +} > + > struct vq_info_block_legacy { > __u64 queue; > __u32 align; > @@ -337,17 +347,17 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev, > ccw->cda = (...
2019 May 08
2
[PATCH 09/10] virtio/s390: use DMA memory for ccw I/O and classic notifiers
...++ b/drivers/s390/virtio/virtio_ccw.c > @@ -46,9 +46,15 @@ struct vq_config_block { > #define VIRTIO_CCW_CONFIG_SIZE 0x100 > /* same as PCI config space size, should be enough for all drivers */ > > +struct vcdev_dma_area { > + unsigned long indicators; > + unsigned long indicators2; > + struct vq_config_block config_block; > + __u8 status; > +}; > + > struct virtio_ccw_device { > struct virtio_device vdev; > - __u8 *status; > __u8 config[VIRTIO_CCW_CONFIG_SIZE]; > struct ccw_device *cdev; > __u32 curr_io; > @@ -58,24 +64,22 @@ st...
2019 May 08
2
[PATCH 09/10] virtio/s390: use DMA memory for ccw I/O and classic notifiers
...++ b/drivers/s390/virtio/virtio_ccw.c > @@ -46,9 +46,15 @@ struct vq_config_block { > #define VIRTIO_CCW_CONFIG_SIZE 0x100 > /* same as PCI config space size, should be enough for all drivers */ > > +struct vcdev_dma_area { > + unsigned long indicators; > + unsigned long indicators2; > + struct vq_config_block config_block; > + __u8 status; > +}; > + > struct virtio_ccw_device { > struct virtio_device vdev; > - __u8 *status; > __u8 config[VIRTIO_CCW_CONFIG_SIZE]; > struct ccw_device *cdev; > __u32 curr_io; > @@ -58,24 +64,22 @@ st...
2019 May 10
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...????? void *airq_info; >>>> ? }; >>>> +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) >>>> +{ >>>> +??? return &vcdev->indicators; >>>> +} >>>> + >>>> +static inline unsigned long *indicators2(struct virtio_ccw_device >>>> *vcdev) >>>> +{ >>>> +??? return &vcdev->indicators2; >>>> +} >>>> + >>>> ? struct vq_info_block_legacy { >>>> ????? __u64 queue; >>>> ????? __u32 align; >>&...
2019 May 10
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...????? void *airq_info; >>>> ? }; >>>> +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) >>>> +{ >>>> +??? return &vcdev->indicators; >>>> +} >>>> + >>>> +static inline unsigned long *indicators2(struct virtio_ccw_device >>>> *vcdev) >>>> +{ >>>> +??? return &vcdev->indicators2; >>>> +} >>>> + >>>> ? struct vq_info_block_legacy { >>>> ????? __u64 queue; >>>> ????? __u32 align; >>&...
2019 May 09
1
[PATCH 08/10] virtio/s390: add indirection to indicators access
...t; @@ -68,6 +68,16 @@ struct virtio_ccw_device { >> ????? void *airq_info; >> ? }; >> +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) >> +{ >> +??? return &vcdev->indicators; >> +} >> + >> +static inline unsigned long *indicators2(struct virtio_ccw_device >> *vcdev) >> +{ >> +??? return &vcdev->indicators2; >> +} >> + >> ? struct vq_info_block_legacy { >> ????? __u64 queue; >> ????? __u32 align; >> @@ -337,17 +347,17 @@ static void virtio_ccw_drop_indicator(struct...
2010 Nov 23
2
Reading parts of data files
Dear, I'm doing analysis where I need to work on relatively large (50-60 MB) text files, though I'm really interested only in parts with binary variables (named indicators1, indicators2, ... etc.) Every text file contains other numeric columns, but not always the same and not always in the same order - therefore I would rather need a method connecting to file and reading only colums with respect to name pattern (ie indicators + number). That should speed things up (now I have to...
2019 May 10
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...gt;>>>>> +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) >>>>>> +{ >>>>>> +??? return &vcdev->indicators; >>>>>> +} >>>>>> + >>>>>> +static inline unsigned long *indicators2(struct virtio_ccw_device >>>>>> *vcdev) >>>>>> +{ >>>>>> +??? return &vcdev->indicators2; >>>>>> +} >>>>>> + >>>>>> ? struct vq_info_block_legacy { >>>>>> ????? _...
2019 May 10
2
[PATCH 08/10] virtio/s390: add indirection to indicators access
...gt;>>>>> +static inline unsigned long *indicators(struct virtio_ccw_device *vcdev) >>>>>> +{ >>>>>> +??? return &vcdev->indicators; >>>>>> +} >>>>>> + >>>>>> +static inline unsigned long *indicators2(struct virtio_ccw_device >>>>>> *vcdev) >>>>>> +{ >>>>>> +??? return &vcdev->indicators2; >>>>>> +} >>>>>> + >>>>>> ? struct vq_info_block_legacy { >>>>>> ????? _...
2016 Mar 01
3
[PATCH 0/2] virtio/s390 patches
Hi Michael, here are two virtio/s390 patches (one cleanup, one bugfix), prepared against your vhost branch of mst/vhost.git. Please apply. Cornelia Huck (1): virtio/s390: size of SET_IND payload Geliang Tang (1): virtio/s390: use dev_to_virtio drivers/s390/virtio/virtio_ccw.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) -- 2.3.9
2016 Mar 01
3
[PATCH 0/2] virtio/s390 patches
Hi Michael, here are two virtio/s390 patches (one cleanup, one bugfix), prepared against your vhost branch of mst/vhost.git. Please apply. Cornelia Huck (1): virtio/s390: size of SET_IND payload Geliang Tang (1): virtio/s390: use dev_to_virtio drivers/s390/virtio/virtio_ccw.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) -- 2.3.9
2019 Apr 26
0
[PATCH 09/10] virtio/s390: use DMA memory for ccw I/O and classic notifiers
...- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -46,9 +46,15 @@ struct vq_config_block { #define VIRTIO_CCW_CONFIG_SIZE 0x100 /* same as PCI config space size, should be enough for all drivers */ +struct vcdev_dma_area { + unsigned long indicators; + unsigned long indicators2; + struct vq_config_block config_block; + __u8 status; +}; + struct virtio_ccw_device { struct virtio_device vdev; - __u8 *status; __u8 config[VIRTIO_CCW_CONFIG_SIZE]; struct ccw_device *cdev; __u32 curr_io; @@ -58,24 +64,22 @@ struct virtio_ccw_device { spinlock_t lock; struct mutex i...
2019 Apr 26
33
[PATCH 00/10] s390: virtio: support protected virtualization
Enhanced virtualization protection technology may require the use of bounce buffers for I/O. While support for this was built into the virtio core, virtio-ccw wasn't changed accordingly. Some background on technology (not part of this series) and the terminology used. * Protected Virtualization (PV): Protected Virtualization guarantees, that non-shared memory of a guest that operates in PV
2019 Apr 26
33
[PATCH 00/10] s390: virtio: support protected virtualization
Enhanced virtualization protection technology may require the use of bounce buffers for I/O. While support for this was built into the virtio core, virtio-ccw wasn't changed accordingly. Some background on technology (not part of this series) and the terminology used. * Protected Virtualization (PV): Protected Virtualization guarantees, that non-shared memory of a guest that operates in PV
2019 May 23
0
[PATCH v2 7/8] virtio/s390: use DMA memory for ccw I/O and classic notifiers
...- a/drivers/s390/virtio/virtio_ccw.c +++ b/drivers/s390/virtio/virtio_ccw.c @@ -46,9 +46,15 @@ struct vq_config_block { #define VIRTIO_CCW_CONFIG_SIZE 0x100 /* same as PCI config space size, should be enough for all drivers */ +struct vcdev_dma_area { + unsigned long indicators; + unsigned long indicators2; + struct vq_config_block config_block; + __u8 status; +}; + struct virtio_ccw_device { struct virtio_device vdev; - __u8 *status; __u8 config[VIRTIO_CCW_CONFIG_SIZE]; struct ccw_device *cdev; __u32 curr_io; @@ -58,24 +64,22 @@ struct virtio_ccw_device { spinlock_t lock; struct mutex i...