qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: anthony@codemonkey.ws
Cc: qemu-trivial@nongnu.org, Rusty Russell <rusty@rustcorp.com.au>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	qemu-devel@nongnu.org, David Gibson <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PATCH] Remove PCI class code from virtio balloon device
Date: Mon, 19 Mar 2012 15:59:23 +1100	[thread overview]
Message-ID: <1332133163-7890-1-git-send-email-david@gibson.dropbear.id.au> (raw)

Currently the virtio balloon device, when using the virtio-pci interface
advertises itself with PCI class code MEMORY_RAM.  This is wrong; the
balloon is vaguely related to memory, but is nothing like a PCI memory
device in the meaning of the class code, and this code is not required or
suggested by the virtio PCI specification.

Worse, this patch causes problems on the pseries machine, because the
firmware, seeing this class code, advertises the device as memory in the
device tree, and then a guest kernel bug causes it to see this "memory"
before the real system memory, leading to a crash in early boot.

This patch fixes the problem by removing the bogus PCI class code on the
balloon device.

Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
---
 hw/virtio-pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c
index a0fb7c1..da8a382 100644
--- a/hw/virtio-pci.c
+++ b/hw/virtio-pci.c
@@ -919,7 +919,7 @@ static void virtio_balloon_class_init(ObjectClass *klass, void *data)
     k->vendor_id = PCI_VENDOR_ID_REDHAT_QUMRANET;
     k->device_id = PCI_DEVICE_ID_VIRTIO_BALLOON;
     k->revision = VIRTIO_PCI_ABI_VERSION;
-    k->class_id = PCI_CLASS_MEMORY_RAM;
+    k->class_id = PCI_CLASS_OTHERS;
     dc->reset = virtio_pci_reset;
     dc->props = virtio_balloon_properties;
 }
-- 
1.7.9.1

             reply	other threads:[~2012-03-19  4:59 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-19  4:59 David Gibson [this message]
2012-03-19 11:33 ` [Qemu-devel] [PATCH] Remove PCI class code from virtio balloon device Stefan Hajnoczi
2012-03-20  0:42   ` David Gibson
2012-03-20  9:54     ` Stefan Hajnoczi
2012-03-20 10:19       ` David Gibson
2012-03-21 11:26         ` Stefan Hajnoczi
2012-03-21 11:28           ` Stefan Hajnoczi
2012-03-21 13:24             ` David Gibson
2012-03-21 13:08           ` Michael S. Tsirkin
2012-03-21 14:42             ` Anthony Liguori
2012-03-21 15:10               ` Michael S. Tsirkin
2012-03-21 15:14                 ` Anthony Liguori
2012-03-21 16:11                   ` Michael S. Tsirkin
2012-03-21 16:26                     ` Anthony Liguori
2012-03-21 16:33                       ` Anthony Liguori
2012-03-21 18:28                         ` Michael S. Tsirkin
2012-03-21 18:11                       ` Michael S. Tsirkin
2012-03-20 10:53     ` Michael S. Tsirkin
  -- strict thread matches above, loose matches on Subject: below --
2012-03-26  1:19 David Gibson
2012-04-02  2:43 ` David Gibson
2012-04-02  6:46   ` Michael S. Tsirkin
2012-04-02  6:49     ` David Gibson
2012-04-02  7:11       ` Michael S. Tsirkin
2012-04-03 14:31         ` Michael S. Tsirkin
2012-03-22  9:09 David Gibson
2012-03-22 10:01 ` Stefan Hajnoczi
2012-03-22 10:27   ` Gerd Hoffmann
2012-03-22 10:32     ` Stefan Hajnoczi
2012-03-22 10:52   ` David Gibson
2012-03-22 11:53 ` Michael S. Tsirkin
2012-03-23  1:52   ` David Gibson
2012-03-23 12:54     ` Anthony Liguori
2012-03-16  1:03 David Gibson
2012-03-18 12:38 ` Michael S. Tsirkin
2012-03-19  2:17   ` David Gibson

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=1332133163-7890-1-git-send-email-david@gibson.dropbear.id.au \
    --to=david@gibson.dropbear.id.au \
    --cc=anthony@codemonkey.ws \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-trivial@nongnu.org \
    --cc=rusty@rustcorp.com.au \
    /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).