From mboxrd@z Thu Jan 1 00:00:00 1970 From: Steve Rutherford Subject: Re: [PATCH v8 3/4] KVM: x86: Add EOI exit bitmap inference Date: Thu, 30 Jul 2015 00:59:36 -0700 Message-ID: <20150730075936.GA19524@google.com> References: <1438237955-29897-1-git-send-email-srutherford@google.com> <55B9D5BE.6090401@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: kvm@vger.kernel.org To: Paolo Bonzini Return-path: Received: from mail-pa0-f49.google.com ([209.85.220.49]:32975 "EHLO mail-pa0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750770AbbG3H7y (ORCPT ); Thu, 30 Jul 2015 03:59:54 -0400 Received: by padck2 with SMTP id ck2so19564737pad.0 for ; Thu, 30 Jul 2015 00:59:53 -0700 (PDT) Content-Disposition: inline In-Reply-To: <55B9D5BE.6090401@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Thu, Jul 30, 2015 at 09:43:58AM +0200, Paolo Bonzini wrote: > > > 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. Jeeze, yeah, that function is totally dead. > > Paolo