[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <f955cbce-5e64-1262-56eb-5c34fa0d69a4@redhat.com>
Date: Thu, 23 Feb 2017 11:57:43 +0100
From: Paolo Bonzini <pbonzini@...hat.com>
To: Radim Krčmář <rkrcmar@...hat.com>,
linux-kernel@...r.kernel.org, kvm@...r.kernel.org
Cc: Andrew Jones <drjones@...hat.com>,
Marc Zyngier <marc.zyngier@....com>,
Christian Borntraeger <borntraeger@...ibm.com>,
Cornelia Huck <cornelia.huck@...ibm.com>,
James Hogan <james.hogan@...tec.com>,
Paul Mackerras <paulus@...abs.org>,
Christoffer Dall <christoffer.dall@...aro.org>
Subject: Re: [PATCH 2/5] KVM: add KVM request variants without barrier
On 16/02/2017 17:04, Radim Krčmář wrote:
> +
> +static inline void __kvm_request_clear(unsigned req, struct kvm_vcpu *vcpu)
> +{
> + test_bit(req, &vcpu->requests);
> }
Are you sure? :)
Paolo
> static inline bool kvm_request_test_and_clear(unsigned req, struct kvm_vcpu *vcpu)
> {
> - if (test_bit(req, &vcpu->requests)) {
> - clear_bit(req, &vcpu->requests);
> + if (__kvm_request_test(req, vcpu)) {
> + __kvm_request_clear(req, vcpu);
>
> /*
> * Ensure the rest of the request is visible to
> --
Powered by blists - more mailing lists