From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIJpH-0006Hx-RZ for qemu-devel@nongnu.org; Tue, 25 Feb 2014 10:21:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIJpB-0005P1-SM for qemu-devel@nongnu.org; Tue, 25 Feb 2014 10:21:43 -0500 Received: from mx1.redhat.com ([209.132.183.28]:22802) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIJpB-0005Ow-JJ for qemu-devel@nongnu.org; Tue, 25 Feb 2014 10:21:37 -0500 Date: Tue, 25 Feb 2014 16:21:21 +0100 From: Stefan Hajnoczi Message-ID: <20140225152121.GA2374@stefanha-thinkpad.redhat.com> References: <20140221112802.15111.10669.stgit@bahia.local> <20140221112810.15111.5405.stgit@bahia.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140221112810.15111.5405.stgit@bahia.local> Subject: Re: [Qemu-devel] [PATCH v5 1/8] virtio_get_byteswap: function for endian-ambivalent targets using virtio List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Greg Kurz Cc: kwolf@redhat.com, peter.maydell@linaro.org, thuth@linux.vnet.ibm.com, mst@redhat.com, marc.zyngier@arm.com, rusty@rustcorp.com.au, agraf@suse.de, qemu-devel@nongnu.org, anthony@codemonkey.ws, cornelia.huck@de.ibm.com, pbonzini@redhat.com, afaerber@suse.de On Fri, Feb 21, 2014 at 12:28:11PM +0100, Greg Kurz wrote: > diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c > index aeabf3a..4fd6ac2 100644 > --- a/hw/virtio/virtio.c > +++ b/hw/virtio/virtio.c > @@ -19,6 +19,9 @@ > #include "hw/virtio/virtio.h" > #include "qemu/atomic.h" > #include "hw/virtio/virtio-bus.h" > +#include "hw/virtio/virtio-access.h" > + > +bool virtio_byteswap; > > /* > * The alignment to use between consumer and producer parts of vring. > @@ -546,6 +549,9 @@ void virtio_reset(void *opaque) > > virtio_set_status(vdev, 0); > > + /* We assume all devices are the same endian. */ > + virtio_byteswap = virtio_get_byteswap(); > + > if (k->reset) { > k->reset(vdev); > } In the previous version it was pointed out that the global is nasty. A cleaner solution is a per-VirtIODevice enum device_endian value which gets passed to lduw_phys_internal()/stl_phys_internal()/etc. Now the same code can be used for: 1. Host == guest-endian 2. Host != guest-endian 3. "Everything is little-endian" (VIRTIO 1.0) Keeping it per-device means we can have both legacy and VIRTIO 1.0 devices in a guest. That's better than hacking in a global now and having to undo it when VIRTIO 1.0 support gets merged. Stefan