All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@redhat.com>
To: "Marc Marí" <marc.mari.barcelo@gmail.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v8 5/7] libqos: Added test case for configuration changes in virtio-blk test
Date: Tue, 2 Sep 2014 10:57:35 +0100	[thread overview]
Message-ID: <20140902095735.GE29067@stefanha-thinkpad.redhat.com> (raw)
In-Reply-To: <20140901231137.649d7bb8@crunchbang>

[-- Attachment #1: Type: text/plain, Size: 2572 bytes --]

On Mon, Sep 01, 2014 at 11:11:37PM +0200, Marc Marí wrote:
> El Mon, 1 Sep 2014 18:27:34 +0200
> Marc Marí <marc.mari.barcelo@gmail.com> escribió:
> > El Mon, 1 Sep 2014 18:09:09 +0200
> > Greg Kurz <gkurz@linux.vnet.ibm.com> escribió:
> > > On Mon,  1 Sep 2014 12:07:58 +0200
> > > Marc Marí <marc.mari.barcelo@gmail.com> wrote:
> > > > Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
> > > > Signed-off-by: Marc Marí <marc.mari.barcelo@gmail.com>
> > > > ---
> > > 
> > > Hi Marc,
> > > 
> > > I gave it a try for various host/target combinations involving ppc64
> > > and x86_64. Here is what I get:
> > > 
> > >         |   x86_64   |    ppc64    | TARGET
> > >         +------------+-------------+--------
> > > x86_64  |     OK     | assert  (1) |
> > > --------+------------+-------------+
> > > ppc64   | assert (2) | assert  (1) |
> > > --------+------------+-------------+
> > > ppc64le |     OK     | assert  (1) |
> > > --------+------------+-------------+
> > >   HOST  |
> > > 
> > > where OK means:
> > > 
> > > /virtio/blk/pci/basic: OK
> > > /virtio/blk/pci/indirect: OK
> > > /virtio/blk/pci/config: OK
> > > /virtio/blk/pci/msix: OK
> > > /virtio/blk/pci/idx: OK
> > > 
> > > and assert (1) is:
> > > 
> > > tests/virtio-blk-test.c:87:virtio_blk_init: assertion failed:
> > > (dev != NULL)
> > > 
> > > and assert (2) is:
> > > 
> > > tests/virtio-blk-test.c:171:pci_basic: assertion failed (status ==
> > > 0): (2 == 0)
> > > 
> > > I will investigate further but the first column in the array ^^
> > > seems to indicate that there's some endianness bug.
> > > 
> > > Cheers.
> > > 
> > > --
> > > Greg
> > 
> > Hi
> > 
> > I will also investigate. Just add that with assert (2), status
> > is 2, which means status is VIRTIO_BLK_S_UNSUPP, which means "request
> > unsupported by host". So, for some reason, ppc64 host does not support
> > a simple write request.
> > 
> > Thanks for your tests
> > Marc
> 
> Hi
> 
> The problem seems to be that it is not implemented. virtio-blk-test is
> now using pci-pc, that has the addresses 0xcf8 and 0xcfc hardcoded.
> These addresses are the key-value for PCI space, to search for devices,
> and I suppose it is specific to i386 and x86_64.
> 
> I also searched information to see how easy it is to add another
> architecture and I could not find much information on ppc64, and even
> less when mixing ppc64 and PCI.

That explains why the ppc64 target column is failing.

But x86 target on ppc64 host should still work.

Stefan

[-- Attachment #2: Type: application/pgp-signature, Size: 473 bytes --]

  reply	other threads:[~2014-09-02  9:57 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-01 10:07 [Qemu-devel] [PATCH v8 0/7] Virtio PCI libqos driver Marc Marí
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 1/7] tests: Functions bus_foreach and device_find from libqos virtio API Marc Marí
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 2/7] tests: Add virtio device initialization Marc Marí
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 3/7] libqos: Added basic virtqueue support to virtio implementation Marc Marí
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 4/7] libqos: Added indirect descriptor " Marc Marí
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 5/7] libqos: Added test case for configuration changes in virtio-blk test Marc Marí
2014-09-01 16:09   ` Greg Kurz
2014-09-01 16:27     ` Marc Marí
2014-09-01 21:11       ` Marc Marí
2014-09-02  9:57         ` Stefan Hajnoczi [this message]
2014-09-02 11:13       ` Greg Kurz
2014-09-02 15:26         ` [Qemu-devel] [PATCH] libqos: fix endianness bug in virtio-blk-test Greg Kurz
2014-09-01 10:07 ` [Qemu-devel] [PATCH v8 6/7] libqos: Added MSI-X support Marc Marí
2014-09-01 10:08 ` [Qemu-devel] [PATCH v8 7/7] libqos: Added EVENT_IDX support Marc Marí

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=20140902095735.GE29067@stefanha-thinkpad.redhat.com \
    --to=stefanha@redhat.com \
    --cc=marc.mari.barcelo@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.