* [PATCH repost for-3.7] vhost: fix mergeable bufs on BE hosts
@ 2012-10-24 18:37 Michael S. Tsirkin
2012-10-25 3:20 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Michael S. Tsirkin @ 2012-10-24 18:37 UTC (permalink / raw)
To: David Miller; +Cc: Alexander Graf, netdev, kvm, virtualization, stable
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>
Cc: stable@vger.kernel.org
---
Repost fixing up To/Cc list.
drivers/vhost/net.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
index 9ab6d47..2bb463c 100644
--- a/drivers/vhost/net.c
+++ b/drivers/vhost/net.c
@@ -448,7 +448,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? */
--
MST
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH repost for-3.7] vhost: fix mergeable bufs on BE hosts
2012-10-24 18:37 [PATCH repost for-3.7] vhost: fix mergeable bufs on BE hosts Michael S. Tsirkin
@ 2012-10-25 3:20 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2012-10-25 3:20 UTC (permalink / raw)
To: mst; +Cc: agraf, netdev, kvm, virtualization, stable
From: "Michael S. Tsirkin" <mst@redhat.com>
Date: Wed, 24 Oct 2012 20:37:51 +0200
> 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>
> Cc: stable@vger.kernel.org
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-10-25 3:20 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-24 18:37 [PATCH repost for-3.7] vhost: fix mergeable bufs on BE hosts Michael S. Tsirkin
2012-10-25 3:20 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).