From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: [PATCH kvm-unit-tests v2 2/8] Increase max_cpu to 64 Date: Tue, 31 Aug 2010 16:36:58 +0800 Message-ID: <20100831083658.10672.39882.stgit@FreeLancer> References: <20100831083216.10672.20413.stgit@FreeLancer> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit To: zamsden@redhat.com, glommer@redhat.com, mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:7330 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752420Ab0HaIhB (ORCPT ); Tue, 31 Aug 2010 04:37:01 -0400 Received: from int-mx03.intmail.prod.int.phx2.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.16]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o7V8b0kh006907 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 31 Aug 2010 04:37:01 -0400 In-Reply-To: <20100831083216.10672.20413.stgit@FreeLancer> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Jason Wang --- x86/cstart.S | 2 +- x86/cstart64.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/x86/cstart.S b/x86/cstart.S index ae1fdbb..bc8d563 100644 --- a/x86/cstart.S +++ b/x86/cstart.S @@ -6,7 +6,7 @@ boot_idt = 0 ipi_vector = 0x20 -max_cpus = 4 +max_cpus = 64 .bss diff --git a/x86/cstart64.S b/x86/cstart64.S index ef09d82..71014d8 100644 --- a/x86/cstart64.S +++ b/x86/cstart64.S @@ -6,7 +6,7 @@ boot_idt = 0 ipi_vector = 0x20 -max_cpus = 4 +max_cpus = 64 .bss