public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15
@ 2007-10-09  8:31 Yang, Sheng
       [not found] ` <DB3BD37E3533EE46BED2FBA80995557F926F03-wq7ZOvIWXbM/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Yang, Sheng @ 2007-10-09  8:31 UTC (permalink / raw)
  To: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

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

>From dc4cc1a804d9f7705648bdee3d7152054da8dea8 Mon Sep 17 00:00:00 2001
From: Sheng Yang <sheng.yang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Date: Tue, 9 Oct 2007 16:22:08 +0800
Subject: [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15

It seems Windows 2000 only support no more than 15 cpus in ACPI table,
otherwise it will cause a BSOD of KMODE_EXCEPTION_NOT_HANDLED.

This patch decrease the cpu counts in ACPI table from 16 to 15.
---
 bios/acpi-dsdt.dsl |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl
index 2ef4118..df255ce 100755
--- a/bios/acpi-dsdt.dsl
+++ b/bios/acpi-dsdt.dsl
@@ -42,7 +42,6 @@ DefinitionBlock (
         Processor (CPUC, 0x0c, 0x0000b010, 0x06) {}
         Processor (CPUD, 0x0d, 0x0000b010, 0x06) {}
         Processor (CPUE, 0x0e, 0x0000b010, 0x06) {}
-        Processor (CPUF, 0x0f, 0x0000b010, 0x06) {}
     }
 
     Scope (\)
-- 
1.5.2

[-- Attachment #2: 0001-kvm-bios-decrease-the-cpu-counts-in-ACPI-table-to.patch --]
[-- Type: application/octet-stream, Size: 912 bytes --]

From dc4cc1a804d9f7705648bdee3d7152054da8dea8 Mon Sep 17 00:00:00 2001
From: Sheng Yang <sheng.yang@intel.com>
Date: Tue, 9 Oct 2007 16:22:08 +0800
Subject: [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15

It seems Windows 2000 only support no more than 15 cpus in ACPI table,
otherwise it will cause a BSOD of KMODE_EXCEPTION_NOT_HANDLED.

This patch decrease the cpu counts in ACPI table to 15.
---
 bios/acpi-dsdt.dsl |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl
index 2ef4118..df255ce 100755
--- a/bios/acpi-dsdt.dsl
+++ b/bios/acpi-dsdt.dsl
@@ -42,7 +42,6 @@ DefinitionBlock (
         Processor (CPUC, 0x0c, 0x0000b010, 0x06) {}
         Processor (CPUD, 0x0d, 0x0000b010, 0x06) {}
         Processor (CPUE, 0x0e, 0x0000b010, 0x06) {}
-        Processor (CPUF, 0x0f, 0x0000b010, 0x06) {}
     }
 
     Scope (\)
-- 
1.5.2


[-- Attachment #3: Type: text/plain, Size: 314 bytes --]

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/

[-- Attachment #4: Type: text/plain, Size: 186 bytes --]

_______________________________________________
kvm-devel mailing list
kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/kvm-devel

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

* Re: [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15
       [not found] ` <DB3BD37E3533EE46BED2FBA80995557F926F03-wq7ZOvIWXbM/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2007-10-09  9:48   ` Avi Kivity
  0 siblings, 0 replies; 2+ messages in thread
From: Avi Kivity @ 2007-10-09  9:48 UTC (permalink / raw)
  To: Yang, Sheng; +Cc: kvm-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

Yang, Sheng wrote:
> >From dc4cc1a804d9f7705648bdee3d7152054da8dea8 Mon Sep 17 00:00:00 2001
> From: Sheng Yang <sheng.yang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Date: Tue, 9 Oct 2007 16:22:08 +0800
> Subject: [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15
>
> It seems Windows 2000 only support no more than 15 cpus in ACPI table,
> otherwise it will cause a BSOD of KMODE_EXCEPTION_NOT_HANDLED.
>
> This patch decrease the cpu counts in ACPI table from 16 to 15.
>   

Applied, thanks.


-- 
error compiling committee.c: too many arguments to function


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/

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

end of thread, other threads:[~2007-10-09  9:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-09  8:31 [PATCH] kvm: bios: decrease the cpu counts in ACPI table to 15 Yang, Sheng
     [not found] ` <DB3BD37E3533EE46BED2FBA80995557F926F03-wq7ZOvIWXbM/UvCtAeCM4rfspsVTdybXVpNB7YpNyf8@public.gmane.org>
2007-10-09  9:48   ` Avi Kivity

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