From: Stefan Hajnoczi Date: Thu, 3 Mar 2011 21:42:28 +0000 (+0000) Subject: virtio-net: Fix lduw_p() pointer argument of wrong size X-Git-Tag: v0.14.1~17 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4b35dfea68539b9737749bf0e70a9dd4d253544c;p=thirdparty%2Fqemu.git virtio-net: Fix lduw_p() pointer argument of wrong size A pointer to a size_t variable was passed as the void * pointer to lduw_p() in virtio_net_receive(). Instead of acting on the 16-bit value this caused failure on big-endian hosts. Avoid this issue in the future by using stw_p() instead. In general we should use ld*_p() for loading from target memory and st*_p() for storing to target memory anyway, not the other way around. Also tighten up a correct use of lduw_p() when stw_p() should be used instead in virtio_net_get_config(). Signed-off-by: Stefan Hajnoczi Signed-off-by: Aurelien Jarno (cherry picked from commit b46d97f2d2fd7c099b11e610de630918dfd11fa1) --- diff --git a/hw/virtio-net.c b/hw/virtio-net.c index 671d952921a..e9775a6e737 100644 --- a/hw/virtio-net.c +++ b/hw/virtio-net.c @@ -79,7 +79,7 @@ static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config) VirtIONet *n = to_virtio_net(vdev); struct virtio_net_config netcfg; - netcfg.status = lduw_p(&n->status); + stw_p(&netcfg.status, n->status); memcpy(netcfg.mac, n->mac, ETH_ALEN); memcpy(config, &netcfg, sizeof(netcfg)); } @@ -678,7 +678,7 @@ static ssize_t virtio_net_receive(VLANClientState *nc, const uint8_t *buf, size_ } if (mhdr) { - mhdr->num_buffers = lduw_p(&i); + stw_p(&mhdr->num_buffers, i); } virtqueue_flush(n->rx_vq, i);