From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxHzi-0001VR-FM for qemu-devel@nongnu.org; Wed, 18 Jun 2014 11:41:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WxHzb-0005UG-PU for qemu-devel@nongnu.org; Wed, 18 Jun 2014 11:41:50 -0400 Received: from cantor2.suse.de ([195.135.220.15]:55361 helo=mx2.suse.de) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WxHzb-0005U8-J6 for qemu-devel@nongnu.org; Wed, 18 Jun 2014 11:41:43 -0400 Message-ID: <53A1B336.4090504@suse.de> Date: Wed, 18 Jun 2014 17:41:42 +0200 From: Alexander Graf MIME-Version: 1.0 References: <20140613111703.22108.14322.stgit@bahia.local> <20140617073631.GL16768@stefanha-thinkpad.redhat.com> <539FF0E3.6040407@suse.de> <20140618103814.GG14030@stefanha-thinkpad.redhat.com> <20140618134204.GB31764@redhat.com> <20140618162804.6e2cb399@bahia.local> <53A1B248.7020007@suse.de> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v8 00/20] virtio endian-ambivalent target List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: Kevin Wolf , Anthony Liguori , "Michael S. Tsirkin" , Stefan Hajnoczi , Rusty Russell , QEMU Developers , Juan Quintela , "Aneesh Kumar K.V" , Stefan Hajnoczi , Amit Shah , Paolo Bonzini , =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= , Greg Kurz On 18.06.14 17:40, Peter Maydell wrote: > On 18 June 2014 16:37, Alexander Graf wrote: >> I actually agree with Greg here. We implicitly create different VGA adapters >> today depending on TARGET_WORDS_BIGENDIAN. The FB endianness should have >> been separate devices (BE / LE) or runtime configuration from the beginning. >> >> Anything that checks TARGET_WORDS_BIGENDIAN in hw/ is very likely to do >> something pretty wrong ;). > Directly, yes, it's a bit of a red flag. But a huge % of devices do > indirectly, by marking their memory regions as DEVICE_NATIVE_ENDIAN. That's ok and the expected ABI to devices. It's TARGET_WORDS_BIGENDIAN that's a good marker that something's wrong. Alex