diff options
author | Greg Kurz <groug@kaod.org> | 2017-05-25 10:30:13 +0200 |
---|---|---|
committer | Greg Kurz <groug@kaod.org> | 2017-05-25 10:30:13 +0200 |
commit | 506f3275829258fdf193bbf0f98f3f9e8c0f3c45 (patch) | |
tree | ec8cc52f26cef4e5abdb4277acaa06dddc573a07 /hw/9pfs/virtio-9p-device.c | |
parent | 9964e96dc9999cf7f7c936ee854a795415d19b60 (diff) | |
download | qemu-506f3275829258fdf193bbf0f98f3f9e8c0f3c45.zip qemu-506f3275829258fdf193bbf0f98f3f9e8c0f3c45.tar.gz qemu-506f3275829258fdf193bbf0f98f3f9e8c0f3c45.tar.bz2 |
virtio-9p/xen-9p: move 9p specific bits to core 9p code
These bits aren't related to the transport so let's move them to the core
code.
Signed-off-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'hw/9pfs/virtio-9p-device.c')
-rw-r--r-- | hw/9pfs/virtio-9p-device.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/hw/9pfs/virtio-9p-device.c b/hw/9pfs/virtio-9p-device.c index 3782f43..245abd8 100644 --- a/hw/9pfs/virtio-9p-device.c +++ b/hw/9pfs/virtio-9p-device.c @@ -70,13 +70,7 @@ static void handle_9p_output(VirtIODevice *vdev, VirtQueue *vq) goto out_free_req; } - pdu->size = le32_to_cpu(out.size_le); - - pdu->id = out.id; - pdu->tag = le16_to_cpu(out.tag_le); - - qemu_co_queue_init(&pdu->complete); - pdu_submit(pdu); + pdu_submit(pdu, &out); } return; |