From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH v8 3/4] KVM: x86: Add EOI exit bitmap inference Date: Thu, 30 Jul 2015 09:43:58 +0200 Message-ID: <55B9D5BE.6090401@redhat.com> References: <1438237955-29897-1-git-send-email-srutherford@google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit To: Steve Rutherford , kvm@vger.kernel.org Return-path: Received: from mail-wi0-f173.google.com ([209.85.212.173]:32964 "EHLO mail-wi0-f173.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750747AbbG3HoC (ORCPT ); Thu, 30 Jul 2015 03:44:02 -0400 Received: by wicmv11 with SMTP id mv11so9835155wic.0 for ; Thu, 30 Jul 2015 00:44:00 -0700 (PDT) In-Reply-To: <1438237955-29897-1-git-send-email-srutherford@google.com> Sender: kvm-owner@vger.kernel.org List-ID: On 30/07/2015 08:32, Steve Rutherford wrote: > +u8 kvm_arch_nr_userspace_ioapic_pins(struct kvm *kvm); > #else > static inline void kvm_vcpu_request_scan_ioapic(struct kvm *kvm) > { > } > +static inline void kvm_arch_irq_routing_update(struct kvm *kvm) > +{ > +} > +static inline u8 kvm_arch_nr_userspace_ioapic_pins(struct kvm *kvm) > +{ > + return 0; > +} Unused function? I can remove it myself, but I'd first like to make sure that I haven't missed anything. Paolo