From patchwork Thu Jul 16 14:03:30 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gleb Natapov X-Patchwork-Id: 35872 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 n6GE3q9F031926 for ; Thu, 16 Jul 2009 14:03:52 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932291AbZGPODs (ORCPT ); Thu, 16 Jul 2009 10:03:48 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932286AbZGPODs (ORCPT ); Thu, 16 Jul 2009 10:03:48 -0400 Received: from mx2.redhat.com ([66.187.237.31]:40142 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756770AbZGPODo (ORCPT ); Thu, 16 Jul 2009 10:03:44 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6GE3i6i025847 for ; Thu, 16 Jul 2009 10:03:44 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6GE3glw014496; Thu, 16 Jul 2009 10:03:43 -0400 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6GE3eN8001279; Thu, 16 Jul 2009 10:03:41 -0400 Received: by dhcp-1-237.tlv.redhat.com (Postfix, from userid 13519) id E988718D478; Thu, 16 Jul 2009 17:03:39 +0300 (IDT) From: Gleb Natapov To: kvm@vger.kernel.org Cc: mtosatti@redhat.com Subject: [PATCH 02/11] Unregister ack notifier callback on PIT freeing. Date: Thu, 16 Jul 2009 17:03:30 +0300 Message-Id: <1247753019-11412-3-git-send-email-gleb@redhat.com> In-Reply-To: <1247753019-11412-1-git-send-email-gleb@redhat.com> References: <1247753019-11412-1-git-send-email-gleb@redhat.com> X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org Signed-off-by: Gleb Natapov --- arch/x86/kvm/i8254.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/x86/kvm/i8254.c b/arch/x86/kvm/i8254.c index 137e548..472653c 100644 --- a/arch/x86/kvm/i8254.c +++ b/arch/x86/kvm/i8254.c @@ -672,6 +672,8 @@ void kvm_free_pit(struct kvm *kvm) if (kvm->arch.vpit) { kvm_unregister_irq_mask_notifier(kvm, 0, &kvm->arch.vpit->mask_notifier); + kvm_unregister_irq_ack_notifier(kvm, + &kvm->arch.vpit->pit_state.irq_ack_notifier); mutex_lock(&kvm->arch.vpit->pit_state.lock); timer = &kvm->arch.vpit->pit_state.pit_timer.timer; hrtimer_cancel(timer);