From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: "Bonzini, Paolo" <pbonzini@redhat.com>
Cc: qemu-devel <qemu-devel@nongnu.org>,
Laurent Vivier <lvivier@redhat.com>,
"Michael S . Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 05/10] vhost-user-test: support VHOST_USER_PROTOCOL_F_CROSS_ENDIAN
Date: Tue, 20 Nov 2018 12:50:29 +0400 [thread overview]
Message-ID: <CAMxuvaw3gPXJkAC6ac9p6LVPB4TYMuSAQ763FoRiK+VwZ4ZBDA@mail.gmail.com> (raw)
In-Reply-To: <20181115143124.19234-6-pbonzini@redhat.com>
Hi
On Thu, Nov 15, 2018 at 6:31 PM Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> This will be useful to run the qtest for ppc64 targets on (for example)
> x86_64 hosts.
>
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> tests/vhost-user-test.c | 8 +++++---
> 1 file changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/tests/vhost-user-test.c b/tests/vhost-user-test.c
> index 6a805e67be..82fc6c581b 100644
> --- a/tests/vhost-user-test.c
> +++ b/tests/vhost-user-test.c
> @@ -51,6 +51,7 @@
> #define VHOST_USER_F_PROTOCOL_FEATURES 30
> #define VHOST_USER_PROTOCOL_F_MQ 0
> #define VHOST_USER_PROTOCOL_F_LOG_SHMFD 1
> +#define VHOST_USER_PROTOCOL_F_CROSS_ENDIAN 6
>
> #define VHOST_LOG_PAGE 0x1000
>
> @@ -251,7 +252,7 @@ static void wait_for_fds(TestServer *s)
>
> static void read_guest_mem_server(TestServer *s)
> {
> - uint32_t *guest_mem;
> + uint8_t *guest_mem;
> int i, j;
> size_t size;
>
> @@ -278,8 +279,8 @@ static void read_guest_mem_server(TestServer *s)
> g_assert(guest_mem != MAP_FAILED);
> guest_mem += (s->memory.regions[i].mmap_offset / sizeof(*guest_mem));
>
> - for (j = 0; j < 256; j++) {
> - uint32_t a = readl(s->memory.regions[i].guest_phys_addr + j*4);
> + for (j = 0; j < 1024; j++) {
> + uint32_t a = readb(s->memory.regions[i].guest_phys_addr + j);
> uint32_t b = guest_mem[j];
>
> g_assert_cmpint(a, ==, b);
> @@ -367,6 +368,7 @@ static void chr_read(void *opaque, const uint8_t *buf, int size)
> msg.flags |= VHOST_USER_REPLY_MASK;
> msg.size = sizeof(m.payload.u64);
> msg.payload.u64 = 1 << VHOST_USER_PROTOCOL_F_LOG_SHMFD;
> + msg.payload.u64 |= 1 << VHOST_USER_PROTOCOL_F_CROSS_ENDIAN;
> if (s->queues > 1) {
> msg.payload.u64 |= 1 << VHOST_USER_PROTOCOL_F_MQ;
> }
> --
> 2.19.1
>
>
next prev parent reply other threads:[~2018-11-20 8:50 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-15 14:31 [Qemu-devel] [PATCH for-3.2 00/10] vhost: preparation for qgraph conversion of vhost-user-test Paolo Bonzini
2018-11-15 14:31 ` [Qemu-devel] [PATCH 01/10] vhost-user-test: use g_cond_broadcast Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-15 14:31 ` [Qemu-devel] [PATCH 02/10] vhost-user-test: signal data_cond when s->rings changes Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-15 14:31 ` [Qemu-devel] [PATCH 03/10] vhost-net: compile it for all targets Paolo Bonzini
2018-11-15 18:42 ` Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2019-01-15 3:50 ` Michael S. Tsirkin
2019-01-15 7:18 ` Paolo Bonzini
2018-11-15 14:31 ` [Qemu-devel] [PATCH 04/10] vhost-user: support cross-endian vnet headers Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-15 14:31 ` [Qemu-devel] [PATCH 05/10] vhost-user-test: support VHOST_USER_PROTOCOL_F_CROSS_ENDIAN Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau [this message]
2018-11-15 14:31 ` [Qemu-devel] [PATCH 06/10] vhost-user-test: skip if there is no memory at address 0 Paolo Bonzini
2018-11-15 14:31 ` [Qemu-devel] [PATCH 07/10] vhost-user-test: reduce usage of global_qtest Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-15 14:31 ` [Qemu-devel] [PATCH 08/10] vhost-user-test: create a main loop per TestServer Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-15 14:31 ` [Qemu-devel] [PATCH 09/10] vhost-user-test: small changes to init_hugepagefs Paolo Bonzini
2018-11-15 14:55 ` Philippe Mathieu-Daudé
2018-11-15 18:41 ` Paolo Bonzini
2018-11-15 18:45 ` Philippe Mathieu-Daudé
2018-11-15 18:46 ` Paolo Bonzini
2018-11-15 14:31 ` [Qemu-devel] [PATCH 10/10] vhost-user-test: create a temporary directory per TestServer Paolo Bonzini
2018-11-20 8:50 ` Marc-André Lureau
2018-11-16 0:43 ` [Qemu-devel] [PATCH for-3.2 00/10] vhost: preparation for qgraph conversion of vhost-user-test no-reply
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=CAMxuvaw3gPXJkAC6ac9p6LVPB4TYMuSAQ763FoRiK+VwZ4ZBDA@mail.gmail.com \
--to=marcandre.lureau@redhat.com \
--cc=jasowang@redhat.com \
--cc=lvivier@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@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).