Reputation: 29
What other possible ways exists to send data from Guest OS to Host Machines ?
I have tried in Qemu:
(1)using vhost-vsock, but it lags in performance.
(2)MMIO callbacks, but it also lags in performance.
Is there any other mechanism by which we can send data from Guest to Host using Qemu ?
Upvotes: 2
Views: 1466
Reputation: 11493
You could also try:
though these are more "straightforward, easy to do without changing QEMU at all" rather than the necessarily most performant ways.
Broadly for performance you want something where the guest doesn't have to make a lot of MMIO register accesses to transfer a block of data, so anything virtio-based is probably worth looking at -- there are virtio-serial devices, for instance.
Upvotes: 1