From patchwork Tue Aug 31 08:36:58 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Wang X-Patchwork-Id: 144701 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o7V8b4QC008909 for ; Tue, 31 Aug 2010 08:37:05 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752584Ab0HaIhC (ORCPT ); Tue, 31 Aug 2010 04:37:02 -0400 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 Received: from [127.0.1.1] (dhcp-65-37.nay.redhat.com [10.66.65.37]) by int-mx03.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o7V8awXL022227; Tue, 31 Aug 2010 04:36:58 -0400 Subject: [PATCH kvm-unit-tests v2 2/8] Increase max_cpu to 64 To: zamsden@redhat.com, glommer@redhat.com, mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org From: Jason Wang Date: Tue, 31 Aug 2010 16:36:58 +0800 Message-ID: <20100831083658.10672.39882.stgit@FreeLancer> In-Reply-To: <20100831083216.10672.20413.stgit@FreeLancer> References: <20100831083216.10672.20413.stgit@FreeLancer> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.16 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 31 Aug 2010 08:37:05 +0000 (UTC) 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