From mboxrd@z Thu Jan 1 00:00:00 1970 From: Radim =?utf-8?B?S3LEjW3DocWZ?= Subject: Re: [PATCH v3 1/7] KVM: add kvm_arch_sched_in Date: Thu, 21 Aug 2014 22:31:10 +0200 Message-ID: <20140821203110.GA30423@potion.brq.redhat.com> References: <1408637291-18533-1-git-send-email-rkrcmar@redhat.com> <1408637291-18533-2-git-send-email-rkrcmar@redhat.com> <53F63F36.9080704@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: kvm@vger.kernel.org, linux-kernel@vger.kernel.org, Paolo Bonzini , Gleb Natapov , Vinod Chegu , Hui-Zhi Zhao , Christian Borntraeger , Lisa Mitchell To: Raghavendra K T Return-path: Content-Disposition: inline In-Reply-To: <53F63F36.9080704@linux.vnet.ibm.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org 2014-08-22 00:19+0530, Raghavendra K T: > On 08/21/2014 09:38 PM, Radim Kr=C4=8Dm=C3=A1=C5=99 wrote: > >Introduce preempt notifiers for architecture specific code. > >Advantage over creating a new notifier in every arch is slightly sim= pler > >code and guaranteed call order with respect to kvm_sched_in. > > > >Signed-off-by: Radim Kr=C4=8Dm=C3=A1=C5=99 > >--- >=20 > Reviewed-by: Raghavendra KT >=20 > No surprise that ia64 doesn't show here :). Oh, totally forgot about its predicted comeback ... Paolo, do you want to fixup this? (It removes double newline.) diff --git a/arch/ia64/kvm/kvm-ia64.c b/arch/ia64/kvm/kvm-ia64.c index 0729ba6..1630624 100644 --- a/arch/ia64/kvm/kvm-ia64.c +++ b/arch/ia64/kvm/kvm-ia64.c @@ -1468,6 +1468,9 @@ void kvm_arch_vcpu_uninit(struct kvm_vcpu *vcpu) kfree(vcpu->arch.apic); } =20 +void kvm_arch_sched_in(struct kvm_vcpu *vcpu) +{ +} =20 long kvm_arch_vcpu_ioctl(struct file *filp, unsigned int ioctl, unsigned long arg) > and I also would have lik= ed > static inlines (as indicated by Paolo). I'll send a patch that converts empty functions into static inlines, maybe return-0s too, soon(ish).