From patchwork Mon Mar 18 12:47:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhang, Yang Z" X-Patchwork-Id: 2290981 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 3B7B4DF215 for ; Mon, 18 Mar 2013 12:52:58 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753116Ab3CRMwu (ORCPT ); Mon, 18 Mar 2013 08:52:50 -0400 Received: from mga03.intel.com ([143.182.124.21]:16631 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753019Ab3CRMws (ORCPT ); Mon, 18 Mar 2013 08:52:48 -0400 Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 18 Mar 2013 05:52:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.84,865,1355126400"; d="scan'208";a="272304275" Received: from yang-desktop.sh.intel.com ([10.239.47.153]) by azsmga001.ch.intel.com with ESMTP; 18 Mar 2013 05:52:47 -0700 From: Yang Zhang To: kvm@vger.kernel.org Cc: gleb@redhat.com, mtosatti@redhat.com, xiantao.zhang@intel.com, Yang Zhang Subject: [PATCH v3 4/8] KVM: Introduce struct rtc_status Date: Mon, 18 Mar 2013 20:47:18 +0800 Message-Id: <1363610842-5878-5-git-send-email-yang.z.zhang@intel.com> X-Mailer: git-send-email 1.7.1.1 In-Reply-To: <1363610842-5878-1-git-send-email-yang.z.zhang@intel.com> References: <1363610842-5878-1-git-send-email-yang.z.zhang@intel.com> Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org From: Yang Zhang Signed-off-by: Yang Zhang --- virt/kvm/ioapic.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/virt/kvm/ioapic.h b/virt/kvm/ioapic.h index 2001b61..20715d0 100644 --- a/virt/kvm/ioapic.h +++ b/virt/kvm/ioapic.h @@ -34,6 +34,12 @@ struct kvm_vcpu; #define IOAPIC_INIT 0x5 #define IOAPIC_EXTINT 0x7 +struct rtc_status { + int need_eoi; + DECLARE_BITMAP(vcpu_map, KVM_MAX_VCPUS); + DECLARE_BITMAP(expected_eoi_bitmap, KVM_MAX_VCPUS); +}; + struct kvm_ioapic { u64 base_address; u32 ioregsel; @@ -47,6 +53,9 @@ struct kvm_ioapic { void (*ack_notifier)(void *opaque, int irq); spinlock_t lock; DECLARE_BITMAP(handled_vectors, 256); +#ifdef CONFIG_X86 + struct rtc_status rtc_status; +#endif }; #ifdef DEBUG