From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47594) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dn49s-0002yv-AD for qemu-devel@nongnu.org; Wed, 30 Aug 2017 10:39:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dn49r-0004rL-C4 for qemu-devel@nongnu.org; Wed, 30 Aug 2017 10:39:56 -0400 MIME-Version: 1.0 References: <1504100343-26607-1-git-send-email-thuth@redhat.com> In-Reply-To: <1504100343-26607-1-git-send-email-thuth@redhat.com> From: =?UTF-8?B?TWFyYy1BbmRyw6kgTHVyZWF1?= Date: Wed, 30 Aug 2017 14:39:44 +0000 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH for-2.11] hw/misc/ivshmem: Fix ivshmem_recv_msg() to also work on big endian systems List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Thomas Huth , qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Laurent Vivier , =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= , David Gibson Hi On Wed, Aug 30, 2017 at 3:43 PM Thomas Huth wrote: > The "slow" ivshmem-tests currently fail when they are running on a > big endian host: > > $ uname -m > ppc64 > $ V=3D1 QTEST_QEMU_BINARY=3Dx86_64-softmmu/qemu-system-x86_64 > tests/ivshmem-test -m slow > /x86_64/ivshmem/single: OK > /x86_64/ivshmem/hotplug: OK > /x86_64/ivshmem/memdev: OK > /x86_64/ivshmem/pair: OK > /x86_64/ivshmem/server-msi: qemu-system-x86_64: > -device ivshmem-doorbell,chardev=3Dchr0,vectors=3D2: server sent invalid= ID > message > Broken pipe > > The problem is that the server side code in ivshmem_server_send_one_msg() > correctly translates all messages IDs into little endian 64-bit values, > but the client side code in the ivshmem_recv_msg() function does not swap > the byte order back. Fix it by passing the value through le64_to_cpu(). > > ivshmem_read() is correct though Signed-off-by: Thomas Huth > Reviewed-by: Marc-Andr=C3=A9 Lureau --- > hw/misc/ivshmem.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/misc/ivshmem.c b/hw/misc/ivshmem.c > index 47a015f..b3ef3ec 100644 > --- a/hw/misc/ivshmem.c > +++ b/hw/misc/ivshmem.c > @@ -653,7 +653,7 @@ static int64_t ivshmem_recv_msg(IVShmemState *s, int > *pfd, Error **errp) > } while (n < sizeof(msg)); > > *pfd =3D qemu_chr_fe_get_msgfd(&s->server_chr); > - return msg; > + return le64_to_cpu(msg); > } > > static void ivshmem_recv_setup(IVShmemState *s, Error **errp) > -- > 1.8.3.1 > > > -- Marc-Andr=C3=A9 Lureau