qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 1/5] Generate mptable unconditionally.


From: Gleb Natapov
Subject: [Qemu-devel] [PATCH 1/5] Generate mptable unconditionally.
Date: Sun, 11 Oct 2009 20:59:03 +0200

VMware ESX requires an mptable even for uniprocessor guests.

Qemu pcbios commit 9869338791ca6f44e628b88e6335ffd66e1ed86b

Signed-off-by: Gleb Natapov <address@hidden>
---
 src/mptable.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/src/mptable.c b/src/mptable.c
index 793968c..3945d2e 100644
--- a/src/mptable.c
+++ b/src/mptable.c
@@ -18,10 +18,6 @@ mptable_init(void)
 
     dprintf(3, "init MPTable\n");
 
-    if (MaxCountCPUs <= 1)
-        // Building an mptable on uniprocessor machines confuses some OSes.
-        return;
-
     int length = (sizeof(struct mptable_config_s)
                   + sizeof(struct mpt_cpu) * MaxCountCPUs
                   + sizeof(struct mpt_bus)
-- 
1.6.3.3





reply via email to

[Prev in Thread] Current Thread [Next in Thread]