mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 06:25:52 +02:00
vhost: fix mergeable bufs on BE hosts
commit 910a578f7e upstream.
We copy head count to a 16 bit field, this works by chance on LE but on
BE guest gets 0. Fix it up.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Tested-by: Alexander Graf <agraf@suse.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
713b9c260b
commit
83dab46844
|
|
@ -305,7 +305,8 @@ static void handle_rx(struct vhost_net *net)
|
|||
.hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
|
||||
};
|
||||
size_t total_len = 0;
|
||||
int err, headcount, mergeable;
|
||||
int err, mergeable;
|
||||
s16 headcount;
|
||||
size_t vhost_hlen, sock_hlen;
|
||||
size_t vhost_len, sock_len;
|
||||
/* TODO: check that we are running from vhost_worker? */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user