From patchwork Mon Sep 14 13:02:27 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 47313 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 n8ED2WFd020783 for ; Mon, 14 Sep 2009 13:02:32 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754379AbZINNC1 (ORCPT ); Mon, 14 Sep 2009 09:02:27 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753860AbZINNC1 (ORCPT ); Mon, 14 Sep 2009 09:02:27 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16045 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753181AbZINNC0 (ORCPT ); Mon, 14 Sep 2009 09:02:26 -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 n8ED2UFh031154 for ; Mon, 14 Sep 2009 09:02:30 -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 n8ED2Tnl024610; Mon, 14 Sep 2009 09:02:29 -0400 Received: from localhost.localdomain (cleopatra.tlv.redhat.com [10.35.255.11]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id 6F02225004E; Mon, 14 Sep 2009 16:02:28 +0300 (IDT) From: Avi Kivity To: Marcelo Tosatti Cc: kvm@vger.kernel.org Subject: [PATCH 2/3] test: use new apic_icr_write() to issue IPI Date: Mon, 14 Sep 2009 16:02:27 +0300 Message-Id: <1252933348-17002-3-git-send-email-avi@redhat.com> In-Reply-To: <1252933348-17002-1-git-send-email-avi@redhat.com> References: <1252933348-17002-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/apic.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kvm/user/test/x86/apic.c b/kvm/user/test/x86/apic.c index 72dd963..fdeec4c 100644 --- a/kvm/user/test/x86/apic.c +++ b/kvm/user/test/x86/apic.c @@ -260,8 +260,8 @@ static void test_self_ipi(void) set_idt_entry(vec, self_ipi_isr); irq_enable(); - apic_write(APIC_ICR, - APIC_DEST_SELF | APIC_DEST_PHYSICAL | APIC_DM_FIXED | vec); + apic_icr_write(APIC_DEST_SELF | APIC_DEST_PHYSICAL | APIC_DM_FIXED | vec, + 0); asm volatile ("nop"); report("self ipi", ipi_count == 1); }