All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd
@ 2021-10-13  9:42 Li RongQing
  2021-10-22  4:16 ` 答复: " Li,Rongqing
  0 siblings, 1 reply; 4+ messages in thread
From: Li RongQing @ 2021-10-13  9:42 UTC (permalink / raw)
  To: x86, kvm, lirongqing

directly call wbinvd for local cpu, instead of calling atomic
cpumask_set_cpu to set local cpu, and then check if local cpu
needs to run in on_each_cpu_mask

on_each_cpu_mask is less efficient than smp_call_function_many,
since it will close preempt again and running call function by
checking flag with SCF_RUN_LOCAL. and here wbinvd can be called
directly

In fact, This change reverts commit 2eec73437487 ("KVM: x86: Avoid
issuing wbinvd twice"), since smp_call_function_many is skiping the
local cpu (as description of c2162e13d6e2f), wbinvd is not issued
twice

and reverts commit c2162e13d6e2f ("KVM: X86: Fix missing local pCPU
when executing wbinvd on all dirty pCPUs") too, which fixed the
previous patch, when revert previous patch, it is not needed.

Signed-off-by: Li RongQing <lirongqing@baidu.com>
---
diff v2: rewrite commit log

 arch/x86/kvm/x86.c |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index aabd3a2..28c4c72 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -6991,15 +6991,14 @@ static int kvm_emulate_wbinvd_noskip(struct kvm_vcpu *vcpu)
 		return X86EMUL_CONTINUE;
 
 	if (static_call(kvm_x86_has_wbinvd_exit)()) {
-		int cpu = get_cpu();
-
-		cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
-		on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
+		preempt_disable();
+		smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
 				wbinvd_ipi, NULL, 1);
-		put_cpu();
+		preempt_enable();
 		cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
-	} else
-		wbinvd();
+	}
+
+	wbinvd();
 	return X86EMUL_CONTINUE;
 }
 
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* 答复: [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd
  2021-10-13  9:42 [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd Li RongQing
@ 2021-10-22  4:16 ` Li,Rongqing
  2021-10-22  5:28   ` Nadav Amit
  0 siblings, 1 reply; 4+ messages in thread
From: Li,Rongqing @ 2021-10-22  4:16 UTC (permalink / raw)
  To: x86, kvm

Ping 

-Li

> -----邮件原件-----
> 发件人: Li,Rongqing <lirongqing@baidu.com>
> 发送时间: 2021年10月13日 17:43
> 收件人: x86@kernel.org; kvm@vger.kernel.org; Li,Rongqing
> <lirongqing@baidu.com>
> 主题: [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate
> wbinvd
> 
> directly call wbinvd for local cpu, instead of calling atomic cpumask_set_cpu to
> set local cpu, and then check if local cpu needs to run in on_each_cpu_mask
> 
> on_each_cpu_mask is less efficient than smp_call_function_many, since it will
> close preempt again and running call function by checking flag with
> SCF_RUN_LOCAL. and here wbinvd can be called directly
> 
> In fact, This change reverts commit 2eec73437487 ("KVM: x86: Avoid issuing
> wbinvd twice"), since smp_call_function_many is skiping the local cpu (as
> description of c2162e13d6e2f), wbinvd is not issued twice
> 
> and reverts commit c2162e13d6e2f ("KVM: X86: Fix missing local pCPU when
> executing wbinvd on all dirty pCPUs") too, which fixed the previous patch, when
> revert previous patch, it is not needed.
> 
> Signed-off-by: Li RongQing <lirongqing@baidu.com>
> ---
> diff v2: rewrite commit log
> 
>  arch/x86/kvm/x86.c |   13 ++++++-------
>  1 files changed, 6 insertions(+), 7 deletions(-)
> 
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index aabd3a2..28c4c72
> 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -6991,15 +6991,14 @@ static int kvm_emulate_wbinvd_noskip(struct
> kvm_vcpu *vcpu)
>  		return X86EMUL_CONTINUE;
> 
>  	if (static_call(kvm_x86_has_wbinvd_exit)()) {
> -		int cpu = get_cpu();
> -
> -		cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
> -		on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
> +		preempt_disable();
> +		smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
>  				wbinvd_ipi, NULL, 1);
> -		put_cpu();
> +		preempt_enable();
>  		cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
> -	} else
> -		wbinvd();
> +	}
> +
> +	wbinvd();
>  	return X86EMUL_CONTINUE;
>  }
> 
> --
> 1.7.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd
  2021-10-22  4:16 ` 答复: " Li,Rongqing
@ 2021-10-22  5:28   ` Nadav Amit
  2021-10-22  6:18     ` 答复: " Li,Rongqing
  0 siblings, 1 reply; 4+ messages in thread
From: Nadav Amit @ 2021-10-22  5:28 UTC (permalink / raw)
  To: Li,Rongqing; +Cc: x86, kvm



> On Oct 21, 2021, at 9:16 PM, Li,Rongqing <lirongqing@baidu.com> wrote:
> 
> Ping 
> 
> -Li
> 
>> -----邮件原件-----
>> 发件人: Li,Rongqing <lirongqing@baidu.com>
>> 发送时间: 2021年10月13日 17:43
>> 收件人: x86@kernel.org; kvm@vger.kernel.org; Li,Rongqing
>> <lirongqing@baidu.com>
>> 主题: [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate
>> wbinvd
>> 
>> directly call wbinvd for local cpu, instead of calling atomic cpumask_set_cpu to
>> set local cpu, and then check if local cpu needs to run in on_each_cpu_mask
>> 
>> on_each_cpu_mask is less efficient than smp_call_function_many, since it will
>> close preempt again and running call function by checking flag with
>> SCF_RUN_LOCAL. and here wbinvd can be called directly
>> 
>> In fact, This change reverts commit 2eec73437487 ("KVM: x86: Avoid issuing
>> wbinvd twice"), since smp_call_function_many is skiping the local cpu (as
>> description of c2162e13d6e2f), wbinvd is not issued twice
>> 
>> and reverts commit c2162e13d6e2f ("KVM: X86: Fix missing local pCPU when
>> executing wbinvd on all dirty pCPUs") too, which fixed the previous patch, when
>> revert previous patch, it is not needed.
>> 
>> Signed-off-by: Li RongQing <lirongqing@baidu.com>
>> ---
>> diff v2: rewrite commit log
>> 
>> arch/x86/kvm/x86.c |   13 ++++++-------
>> 1 files changed, 6 insertions(+), 7 deletions(-)
>> 
>> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c index aabd3a2..28c4c72
>> 100644
>> --- a/arch/x86/kvm/x86.c
>> +++ b/arch/x86/kvm/x86.c
>> @@ -6991,15 +6991,14 @@ static int kvm_emulate_wbinvd_noskip(struct
>> kvm_vcpu *vcpu)
>> 		return X86EMUL_CONTINUE;
>> 
>> 	if (static_call(kvm_x86_has_wbinvd_exit)()) {
>> -		int cpu = get_cpu();
>> -
>> -		cpumask_set_cpu(cpu, vcpu->arch.wbinvd_dirty_mask);
>> -		on_each_cpu_mask(vcpu->arch.wbinvd_dirty_mask,
>> +		preempt_disable();
>> +		smp_call_function_many(vcpu->arch.wbinvd_dirty_mask,
>> 				wbinvd_ipi, NULL, 1);
>> -		put_cpu();
>> +		preempt_enable();
>> 		cpumask_clear(vcpu->arch.wbinvd_dirty_mask);
>> -	} else
>> -		wbinvd();
>> +	}
>> +
>> +	wbinvd();
>> 	return X86EMUL_CONTINUE;
>> }

KVM is none of my business, but on_each_cpu_mask() should be more
efficient since it would run wbinvd() concurrently locally and
remotely (this is a relatively recent change I made). wbinvd() is
an expensive operation, and preempt_enable() is cheap, so there
should not be complicated tradeoff here. 

The proposed change prevents running wbinvd() concurrently so
theoretically it should cause a 2x slowdown (for this specific
piece of code).


^ permalink raw reply	[flat|nested] 4+ messages in thread

* 答复: [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd
  2021-10-22  5:28   ` Nadav Amit
@ 2021-10-22  6:18     ` Li,Rongqing
  0 siblings, 0 replies; 4+ messages in thread
From: Li,Rongqing @ 2021-10-22  6:18 UTC (permalink / raw)
  To: Nadav Amit; +Cc: x86, kvm

> KVM is none of my business, but on_each_cpu_mask() should be more efficient
> since it would run wbinvd() concurrently locally and remotely (this is a relatively
> recent change I made). 

Thanks, I see

-Li

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-10-22  6:18 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-13  9:42 [PATCH][v2] KVM: x86: directly call wbinvd for local cpu when emulate wbinvd Li RongQing
2021-10-22  4:16 ` 答复: " Li,Rongqing
2021-10-22  5:28   ` Nadav Amit
2021-10-22  6:18     ` 答复: " Li,Rongqing

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.