* [PATCH 1/2] virtio/s390: use dev_to_virtio
2016-03-01 12:44 [PATCH 0/2] virtio/s390 patches Cornelia Huck
@ 2016-03-01 12:44 ` Cornelia Huck
2016-03-01 12:44 ` [PATCH 2/2] virtio/s390: size of SET_IND payload Cornelia Huck
2016-03-01 13:01 ` [PATCH 0/2] virtio/s390 patches Michael S. Tsirkin
2 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2016-03-01 12:44 UTC (permalink / raw)
To: mst; +Cc: linux-s390, kvm, Geliang Tang, virtualization, borntraeger
From: Geliang Tang <geliangtang@163.com>
Use dev_to_virtio() instead of open-coding it.
Signed-off-by: Geliang Tang <geliangtang@163.com>
Message-Id: <912bf59bd3a48f2d4d4994681e898dc084fe29d3.1451484163.git.geliangtang@163.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
drivers/s390/virtio/virtio_ccw.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
index bf2d130..46b110a1 100644
--- a/drivers/s390/virtio/virtio_ccw.c
+++ b/drivers/s390/virtio/virtio_ccw.c
@@ -945,8 +945,7 @@ static struct virtio_config_ops virtio_ccw_config_ops = {
static void virtio_ccw_release_dev(struct device *_d)
{
- struct virtio_device *dev = container_of(_d, struct virtio_device,
- dev);
+ struct virtio_device *dev = dev_to_virtio(_d);
struct virtio_ccw_device *vcdev = to_vc_device(dev);
kfree(vcdev->status);
--
2.3.9
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] virtio/s390: size of SET_IND payload
2016-03-01 12:44 [PATCH 0/2] virtio/s390 patches Cornelia Huck
2016-03-01 12:44 ` [PATCH 1/2] virtio/s390: use dev_to_virtio Cornelia Huck
@ 2016-03-01 12:44 ` Cornelia Huck
2016-03-01 13:01 ` [PATCH 0/2] virtio/s390 patches Michael S. Tsirkin
2 siblings, 0 replies; 4+ messages in thread
From: Cornelia Huck @ 2016-03-01 12:44 UTC (permalink / raw)
To: mst; +Cc: borntraeger, virtualization, kvm, linux-s390
SET_IND takes as a payload the _address_ of the indicators, meaning
that we have one of the rare cases where kmalloc(sizeof(&...)) is
actually correct. Let's clarify that with a comment.
The count for the ccw, however, was only correct because the
indicators are 64 bit. Let's use the correct value.
Reported-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Reviewed-by: Halil Pasic <pasic@linux.vnet.ibm.com>
Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
---
drivers/s390/virtio/virtio_ccw.c | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/drivers/s390/virtio/virtio_ccw.c b/drivers/s390/virtio/virtio_ccw.c
index 46b110a1..8688ad4 100644
--- a/drivers/s390/virtio/virtio_ccw.c
+++ b/drivers/s390/virtio/virtio_ccw.c
@@ -342,13 +342,14 @@ static void virtio_ccw_drop_indicator(struct virtio_ccw_device *vcdev,
ccw->count = sizeof(*thinint_area);
ccw->cda = (__u32)(unsigned long) thinint_area;
} else {
+ /* payload is the address of the indicators */
indicatorp = kmalloc(sizeof(&vcdev->indicators),
GFP_DMA | GFP_KERNEL);
if (!indicatorp)
return;
*indicatorp = 0;
ccw->cmd_code = CCW_CMD_SET_IND;
- ccw->count = sizeof(vcdev->indicators);
+ ccw->count = sizeof(&vcdev->indicators);
ccw->cda = (__u32)(unsigned long) indicatorp;
}
/* Deregister indicators from host. */
@@ -656,7 +657,10 @@ static int virtio_ccw_find_vqs(struct virtio_device *vdev, unsigned nvqs,
}
}
ret = -ENOMEM;
- /* We need a data area under 2G to communicate. */
+ /*
+ * We need a data area under 2G to communicate. Our payload is
+ * the address of the indicators.
+ */
indicatorp = kmalloc(sizeof(&vcdev->indicators), GFP_DMA | GFP_KERNEL);
if (!indicatorp)
goto out;
@@ -672,7 +676,7 @@ static int virtio_ccw_find_vqs(struct virtio_device *vdev, unsigned nvqs,
vcdev->indicators = 0;
ccw->cmd_code = CCW_CMD_SET_IND;
ccw->flags = 0;
- ccw->count = sizeof(vcdev->indicators);
+ ccw->count = sizeof(&vcdev->indicators);
ccw->cda = (__u32)(unsigned long) indicatorp;
ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_IND);
if (ret)
@@ -683,7 +687,7 @@ static int virtio_ccw_find_vqs(struct virtio_device *vdev, unsigned nvqs,
vcdev->indicators2 = 0;
ccw->cmd_code = CCW_CMD_SET_CONF_IND;
ccw->flags = 0;
- ccw->count = sizeof(vcdev->indicators2);
+ ccw->count = sizeof(&vcdev->indicators2);
ccw->cda = (__u32)(unsigned long) indicatorp;
ret = ccw_io_helper(vcdev, ccw, VIRTIO_CCW_DOING_SET_CONF_IND);
if (ret)
--
2.3.9
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 0/2] virtio/s390 patches
2016-03-01 12:44 [PATCH 0/2] virtio/s390 patches Cornelia Huck
2016-03-01 12:44 ` [PATCH 1/2] virtio/s390: use dev_to_virtio Cornelia Huck
2016-03-01 12:44 ` [PATCH 2/2] virtio/s390: size of SET_IND payload Cornelia Huck
@ 2016-03-01 13:01 ` Michael S. Tsirkin
2 siblings, 0 replies; 4+ messages in thread
From: Michael S. Tsirkin @ 2016-03-01 13:01 UTC (permalink / raw)
To: Cornelia Huck; +Cc: borntraeger, virtualization, kvm, linux-s390
On Tue, Mar 01, 2016 at 01:44:51PM +0100, Cornelia Huck wrote:
> Hi Michael,
>
> here are two virtio/s390 patches (one cleanup, one bugfix), prepared
> against your vhost branch of mst/vhost.git.
>
> Please apply.
Will do, thanks!
> 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
^ permalink raw reply [flat|nested] 4+ messages in thread