qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Alexey Kardashevskiy <aik@ozlabs.ru>
Cc: qemu-devel@nongnu.org, Marcel Apfelbaum <marcel.a@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] tests: fix acpi to work on bigendian host
Date: Tue, 14 Jan 2014 12:52:14 +0200	[thread overview]
Message-ID: <20140114105214.GA27803@redhat.com> (raw)
In-Reply-To: <1389598433-21159-1-git-send-email-aik@ozlabs.ru>

On Mon, Jan 13, 2014 at 06:33:53PM +1100, Alexey Kardashevskiy wrote:
> Double endianness convertion make this test failing on POWERPC machine
> running in big-endian.
> 
> This fixes the test to success on big-endian host.
> 
> Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>

Yes, readl etc already convert from guest endian-ness to host
endian-ness, and guest is LE.

Applied, thanks.

> ---
>  tests/acpi-test.c | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/acpi-test.c b/tests/acpi-test.c
> index df1af83..30a5e3e 100644
> --- a/tests/acpi-test.c
> +++ b/tests/acpi-test.c
> @@ -51,13 +51,13 @@ typedef struct {
>              field = readb(addr);               \
>              break;                             \
>          case 2:                                \
> -            field = le16_to_cpu(readw(addr));  \
> +            field = readw(addr);               \
>              break;                             \
>          case 4:                                \
> -            field = le32_to_cpu(readl(addr));  \
> +            field = readl(addr);               \
>              break;                             \
>          case 8:                                \
> -            field = le64_to_cpu(readq(addr));  \
> +            field = readq(addr);               \
>              break;                             \
>          default:                               \
>              g_assert(false);                   \
> -- 
> 1.8.4.rc4
> 

      reply	other threads:[~2014-01-14 10:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-13  7:33 [Qemu-devel] [PATCH] tests: fix acpi to work on bigendian host Alexey Kardashevskiy
2014-01-14 10:52 ` Michael S. Tsirkin [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140114105214.GA27803@redhat.com \
    --to=mst@redhat.com \
    --cc=aik@ozlabs.ru \
    --cc=marcel.a@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).