From patchwork Sun Sep 13 16:09:56 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 47170 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8DGA4qi010119 for ; Sun, 13 Sep 2009 16:10:04 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754822AbZIMQJ6 (ORCPT ); Sun, 13 Sep 2009 12:09:58 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1754809AbZIMQJ5 (ORCPT ); Sun, 13 Sep 2009 12:09:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41312 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754802AbZIMQJz (ORCPT ); Sun, 13 Sep 2009 12:09:55 -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 n8DG9wKD016276 for ; Sun, 13 Sep 2009 12:09:59 -0400 Received: from cleopatra.tlv.redhat.com (cleopatra.tlv.redhat.com [10.35.255.11]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n8DG9vU5012934; Sun, 13 Sep 2009 12:09:58 -0400 Received: from localhost.localdomain (cleopatra.tlv.redhat.com [10.35.255.11]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id CFFE825004E; Sun, 13 Sep 2009 19:09:56 +0300 (IDT) From: Avi Kivity To: Marcelo Tosatti Cc: kvm@vger.kernel.org Subject: [PATCH QEMU-KVM 2/2] test: Add vmcall latency test Date: Sun, 13 Sep 2009 19:09:56 +0300 Message-Id: <1252858196-4870-3-git-send-email-avi@redhat.com> In-Reply-To: <1252858196-4870-1-git-send-email-avi@redhat.com> References: <1252858196-4870-1-git-send-email-avi@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Avi Kivity --- kvm/user/test/x86/vmexit.c | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/kvm/user/test/x86/vmexit.c b/kvm/user/test/x86/vmexit.c index 364837f..bd1895f 100644 --- a/kvm/user/test/x86/vmexit.c +++ b/kvm/user/test/x86/vmexit.c @@ -30,11 +30,19 @@ static void cpuid(void) : : : "eax", "ecx", "edx"); } +static void vmcall(void) +{ + unsigned long a = 0, b, c, d; + + asm volatile ("vmcall" : "+a"(a), "=b"(b), "=c"(c), "=d"(d)); +} + static struct test { void (*func)(void); const char *name; } tests[] = { { cpuid, "cpuid", }, + { vmcall, "vmcall", }, }; static void do_test(struct test *test)