Skip to content
Snippets Groups Projects
Commit 99975cc6 authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

vhost/net: length miscalculation


commit 8b38694a
    vhost/net: virtio 1.0 byte swap
had this chunk:
-       heads[headcount - 1].len += datalen;
+       heads[headcount - 1].len = cpu_to_vhost32(vq, len - datalen);

This adds datalen with the wrong sign, causing guest panics.

Fixes: 8b38694a
Reported-by: default avatarAlex Williamson <alex.williamson@redhat.com>
Suggested-by: default avatarGreg Kurz <gkurz@linux.vnet.ibm.com>
Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent a1eb03f5
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment