From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: [PATCH kvm-unit-tests v2 07/10] Correct the tss size Date: Thu, 26 Aug 2010 17:22:07 +0800 Message-ID: <20100826092207.1690.44273.stgit@FreeLancer> References: <20100826091520.1690.44200.stgit@FreeLancer> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit To: mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:13916 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751643Ab0HZJWK (ORCPT ); Thu, 26 Aug 2010 05:22:10 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o7Q9M9tH016953 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Aug 2010 05:22:10 -0400 In-Reply-To: <20100826091520.1690.44200.stgit@FreeLancer> Sender: kvm-owner@vger.kernel.org List-ID: TSS size should be 104 bytes. Signed-off-by: Jason Wang --- x86/cstart64.S | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/x86/cstart64.S b/x86/cstart64.S index 5d358ad..ef09d82 100644 --- a/x86/cstart64.S +++ b/x86/cstart64.S @@ -68,7 +68,7 @@ tss: .rept max_cpus .long 0 .quad ring0stacktop - i * 4096 - .quad 0, 0, 0 + .quad 0, 0 .quad 0, 0, 0, 0, 0, 0, 0, 0 .long 0, 0, 0 i = i + 1