Re: [PATCH 1/9] KVM: Add kvm_arch_vcpu_{un}blocking callbacks

2015-09-04 Thread Christoffer Dall
On Fri, Sep 04, 2015 at 03:50:08PM +0200, Eric Auger wrote: > Hi Christoffer, > On 08/30/2015 03:54 PM, Christoffer Dall wrote: > > Some times it is useful for architecture implementations of KVM to know > > when the VCPU thread is about to block or when it comes back from > > blocking (arm/arm64

Re: [PATCH 1/9] KVM: Add kvm_arch_vcpu_{un}blocking callbacks

2015-09-04 Thread Eric Auger
Hi Christoffer, On 08/30/2015 03:54 PM, Christoffer Dall wrote: > Some times it is useful for architecture implementations of KVM to know > when the VCPU thread is about to block or when it comes back from > blocking (arm/arm64 needs to know this to properly implement timers, for > example). what

Re: [PATCH 1/9] KVM: Add kvm_arch_vcpu_{un}blocking callbacks

2015-09-03 Thread Marc Zyngier
On 30/08/15 14:54, Christoffer Dall wrote: > Some times it is useful for architecture implementations of KVM to know > when the VCPU thread is about to block or when it comes back from > blocking (arm/arm64 needs to know this to properly implement timers, for > example). > > Therefore provide a

[PATCH 1/9] KVM: Add kvm_arch_vcpu_{un}blocking callbacks

2015-08-30 Thread Christoffer Dall
Some times it is useful for architecture implementations of KVM to know when the VCPU thread is about to block or when it comes back from blocking (arm/arm64 needs to know this to properly implement timers, for example). Therefore provide a generic architecture callback function in line with what