]> Git Repo - qemu.git/commitdiff
virtio-serial: fix ANY_LAYOUT
authorMichael S. Tsirkin <[email protected]>
Thu, 23 Jul 2015 14:52:02 +0000 (17:52 +0300)
committerMichael S. Tsirkin <[email protected]>
Mon, 27 Jul 2015 08:24:48 +0000 (11:24 +0300)
Don't assume a specific layout for control messages.
Required by virtio 1.

Signed-off-by: Michael S. Tsirkin <[email protected]>
Reviewed-by: Amit Shah <[email protected]>
Reviewed-by: Jason Wang <[email protected]>
hw/char/virtio-serial-bus.c

index 78c73e5abe01d06efdef5a713a5f9e23717019ac..929e49c67165d5f8175adb142470938b3a9c3c0b 100644 (file)
@@ -195,7 +195,8 @@ static size_t send_control_msg(VirtIOSerial *vser, void *buf, size_t len)
         return 0;
     }
 
-    memcpy(elem.in_sg[0].iov_base, buf, len);
+    /* TODO: detect a buffer that's too short, set NEEDS_RESET */
+    iov_from_buf(elem.in_sg, elem.in_num, 0, buf, len);
 
     virtqueue_push(vq, &elem, len);
     virtio_notify(VIRTIO_DEVICE(vser), vq);
This page took 0.02751 seconds and 4 git commands to generate.