From patchwork Wed Sep 16 09:25:52 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Avi Kivity X-Patchwork-Id: 47888 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 n8G9Quxd009707 for ; Wed, 16 Sep 2009 09:26:56 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758325AbZIPJ0p (ORCPT ); Wed, 16 Sep 2009 05:26:45 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758386AbZIPJ0l (ORCPT ); Wed, 16 Sep 2009 05:26:41 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8557 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758287AbZIPJ0L (ORCPT ); Wed, 16 Sep 2009 05:26:11 -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 n8G9QEUI006109 for ; Wed, 16 Sep 2009 05:26:14 -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 n8G9QCDI013341; Wed, 16 Sep 2009 05:26:14 -0400 Received: from localhost.localdomain (cleopatra.tlv.redhat.com [10.35.255.11]) by cleopatra.tlv.redhat.com (Postfix) with ESMTP id 781E02500C5; Wed, 16 Sep 2009 12:26:11 +0300 (IDT) From: Avi Kivity To: Marcelo Tosatti Cc: kvm@vger.kernel.org Subject: [PATCH QEMU-KVM 17/34] test: use new apic_icr_write() to issue IPI Date: Wed, 16 Sep 2009 12:25:52 +0300 Message-Id: <1253093169-1423-18-git-send-email-avi@redhat.com> In-Reply-To: <1253093169-1423-1-git-send-email-avi@redhat.com> References: <1253093169-1423-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); }