public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* QEMU/KVM: fix copy&paste bug in ACPI IRQ routing tables
@ 2008-05-06 16:29 Marcelo Tosatti
  2008-05-07  8:15 ` Avi Kivity
  0 siblings, 1 reply; 2+ messages in thread
From: Marcelo Tosatti @ 2008-05-06 16:29 UTC (permalink / raw)
  To: Avi Kivity; +Cc: kvm-devel


Slots 9 and 25 were using the identifier of the previous slot.

Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>

diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl
index d2e33f4..c145c4b 100755
--- a/bios/acpi-dsdt.dsl
+++ b/bios/acpi-dsdt.dsl
@@ -269,10 +269,10 @@ DefinitionBlock (
                 Package() {0x0008ffff, 3, LNKC, 0},
 
                 // PCI Slot 9
-                Package() {0x0008ffff, 0, LNKA, 0},
-                Package() {0x0008ffff, 1, LNKB, 0},
-                Package() {0x0008ffff, 2, LNKC, 0},
-                Package() {0x0008ffff, 3, LNKD, 0},
+                Package() {0x0009ffff, 0, LNKA, 0},
+                Package() {0x0009ffff, 1, LNKB, 0},
+                Package() {0x0009ffff, 2, LNKC, 0},
+                Package() {0x0009ffff, 3, LNKD, 0},
 
                 // PCI Slot 10
                 Package() {0x000affff, 0, LNKB, 0},
@@ -365,10 +365,10 @@ DefinitionBlock (
                 Package() {0x0018ffff, 3, LNKC, 0},
 
                 // PCI Slot 25
-                Package() {0x0018ffff, 0, LNKA, 0},
-                Package() {0x0018ffff, 1, LNKB, 0},
-                Package() {0x0018ffff, 2, LNKC, 0},
-                Package() {0x0018ffff, 3, LNKD, 0},
+                Package() {0x0019ffff, 0, LNKA, 0},
+                Package() {0x0019ffff, 1, LNKB, 0},
+                Package() {0x0019ffff, 2, LNKC, 0},
+                Package() {0x0019ffff, 3, LNKD, 0},
 
                 // PCI Slot 26
                 Package() {0x001affff, 0, LNKB, 0},

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-05-07  8:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-06 16:29 QEMU/KVM: fix copy&paste bug in ACPI IRQ routing tables Marcelo Tosatti
2008-05-07  8:15 ` Avi Kivity

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox