* [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support
@ 2019-07-26 6:10 Wanpeng Li
2019-07-26 6:16 ` Wanpeng Li
2019-07-26 17:22 ` kbuild test robot
0 siblings, 2 replies; 5+ messages in thread
From: Wanpeng Li @ 2019-07-26 6:10 UTC (permalink / raw)
To: linux-kernel, kvm
Cc: Paolo Bonzini, Radim Krčmář,
Thomas Gleixner, Sean Christopherson, Nadav Amit
From: Wanpeng Li <wanpengli@tencent.com>
IPI shorthand is supported now by linux apic/x2apic driver, switch to
IPI shorthand for all excluding self and all including self destination
shorthand in kvm guest, to avoid splitting the target mask into serveral
PV IPI hypercalls.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Radim Krčmář <rkrcmar@redhat.com>
Cc: Sean Christopherson <sean.j.christopherson@intel.com>
Cc: Nadav Amit <namit@vmware.com>
Signed-off-by: Wanpeng Li <wanpengli@tencent.com>
---
Note: rebase against tip tree's x86/apic branch
arch/x86/kernel/kvm.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c
index b7f34fe..87b73b8 100644
--- a/arch/x86/kernel/kvm.c
+++ b/arch/x86/kernel/kvm.c
@@ -34,7 +34,9 @@
#include <asm/hypervisor.h>
#include <asm/tlb.h>
+static struct apic orig_apic;
static int kvmapf = 1;
+DECLARE_STATIC_KEY_FALSE(apic_use_ipi_shorthand);
static int __init parse_no_kvmapf(char *arg)
{
@@ -507,12 +509,18 @@ static void kvm_send_ipi_mask_allbutself(const struct cpumask *mask, int vector)
static void kvm_send_ipi_allbutself(int vector)
{
- kvm_send_ipi_mask_allbutself(cpu_online_mask, vector);
+ if (static_branch_likely(&apic_use_ipi_shorthand))
+ orig_apic.send_IPI_allbutself(vector);
+ else
+ kvm_send_ipi_mask_allbutself(cpu_online_mask, vector);
}
static void kvm_send_ipi_all(int vector)
{
- __send_ipi_mask(cpu_online_mask, vector);
+ if (static_branch_likely(&apic_use_ipi_shorthand))
+ orig_apic.send_IPI_allbutself(vector);
+ else
+ __send_ipi_mask(cpu_online_mask, vector);
}
/*
@@ -520,6 +528,8 @@ static void kvm_send_ipi_all(int vector)
*/
static void kvm_setup_pv_ipi(void)
{
+ orig_apic = *apic;
+
apic->send_IPI_mask = kvm_send_ipi_mask;
apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
apic->send_IPI_allbutself = kvm_send_ipi_allbutself;
--
2.7.4
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support
2019-07-26 6:10 [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support Wanpeng Li
@ 2019-07-26 6:16 ` Wanpeng Li
2019-07-26 7:20 ` Thomas Gleixner
2019-07-26 17:22 ` kbuild test robot
1 sibling, 1 reply; 5+ messages in thread
From: Wanpeng Li @ 2019-07-26 6:16 UTC (permalink / raw)
To: LKML, kvm
Cc: Paolo Bonzini, Radim Krčmář,
Thomas Gleixner, Sean Christopherson, Nadav Amit
On Fri, 26 Jul 2019 at 14:10, Wanpeng Li <kernellwp@gmail.com> wrote:
>
> From: Wanpeng Li <wanpengli@tencent.com>
>
> IPI shorthand is supported now by linux apic/x2apic driver, switch to
> IPI shorthand for all excluding self and all including self destination
> shorthand in kvm guest, to avoid splitting the target mask into serveral
> PV IPI hypercalls.
>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Cc: Radim Krčmář <rkrcmar@redhat.com>
> Cc: Sean Christopherson <sean.j.christopherson@intel.com>
> Cc: Nadav Amit <namit@vmware.com>
> Signed-off-by: Wanpeng Li <wanpengli@tencent.com>
> ---
> Note: rebase against tip tree's x86/apic branch
>
> arch/x86/kernel/kvm.c | 14 ++++++++++++--
> 1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c
> index b7f34fe..87b73b8 100644
> --- a/arch/x86/kernel/kvm.c
> +++ b/arch/x86/kernel/kvm.c
> @@ -34,7 +34,9 @@
> #include <asm/hypervisor.h>
> #include <asm/tlb.h>
>
> +static struct apic orig_apic;
> static int kvmapf = 1;
> +DECLARE_STATIC_KEY_FALSE(apic_use_ipi_shorthand);
>
> static int __init parse_no_kvmapf(char *arg)
> {
> @@ -507,12 +509,18 @@ static void kvm_send_ipi_mask_allbutself(const struct cpumask *mask, int vector)
>
> static void kvm_send_ipi_allbutself(int vector)
> {
> - kvm_send_ipi_mask_allbutself(cpu_online_mask, vector);
> + if (static_branch_likely(&apic_use_ipi_shorthand))
> + orig_apic.send_IPI_allbutself(vector);
> + else
> + kvm_send_ipi_mask_allbutself(cpu_online_mask, vector);
> }
>
> static void kvm_send_ipi_all(int vector)
> {
> - __send_ipi_mask(cpu_online_mask, vector);
> + if (static_branch_likely(&apic_use_ipi_shorthand))
> + orig_apic.send_IPI_allbutself(vector);
Make a mistake here, just resend the patch.
> + else
> + __send_ipi_mask(cpu_online_mask, vector);
> }
>
> /*
> @@ -520,6 +528,8 @@ static void kvm_send_ipi_all(int vector)
> */
> static void kvm_setup_pv_ipi(void)
> {
> + orig_apic = *apic;
> +
> apic->send_IPI_mask = kvm_send_ipi_mask;
> apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
> apic->send_IPI_allbutself = kvm_send_ipi_allbutself;
> --
> 2.7.4
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support
2019-07-26 6:16 ` Wanpeng Li
@ 2019-07-26 7:20 ` Thomas Gleixner
2019-07-26 7:46 ` Wanpeng Li
0 siblings, 1 reply; 5+ messages in thread
From: Thomas Gleixner @ 2019-07-26 7:20 UTC (permalink / raw)
To: Wanpeng Li
Cc: LKML, kvm, Paolo Bonzini, Radim Krčmář,
Sean Christopherson, Nadav Amit
On Fri, 26 Jul 2019, Wanpeng Li wrote:
> On Fri, 26 Jul 2019 at 14:10, Wanpeng Li <kernellwp@gmail.com> wrote:
> > static void kvm_send_ipi_all(int vector)
> > {
> > - __send_ipi_mask(cpu_online_mask, vector);
> > + if (static_branch_likely(&apic_use_ipi_shorthand))
> > + orig_apic.send_IPI_allbutself(vector);
>
> Make a mistake here, just resend the patch.
Please don't use [RESEND] if the patch is different. Use [PATCH v2].
[RESEND] is used when you actually resend an unmodified patch, e.g. when
the first submission was ignored for a longer time.
Thanks,
tglx
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support
2019-07-26 7:20 ` Thomas Gleixner
@ 2019-07-26 7:46 ` Wanpeng Li
0 siblings, 0 replies; 5+ messages in thread
From: Wanpeng Li @ 2019-07-26 7:46 UTC (permalink / raw)
To: Thomas Gleixner
Cc: LKML, kvm, Paolo Bonzini, Radim Krčmář,
Sean Christopherson, Nadav Amit
On Fri, 26 Jul 2019 at 15:20, Thomas Gleixner <tglx@linutronix.de> wrote:
>
> On Fri, 26 Jul 2019, Wanpeng Li wrote:
> > On Fri, 26 Jul 2019 at 14:10, Wanpeng Li <kernellwp@gmail.com> wrote:
> > > static void kvm_send_ipi_all(int vector)
> > > {
> > > - __send_ipi_mask(cpu_online_mask, vector);
> > > + if (static_branch_likely(&apic_use_ipi_shorthand))
> > > + orig_apic.send_IPI_allbutself(vector);
> >
> > Make a mistake here, just resend the patch.
>
> Please don't use [RESEND] if the patch is different. Use [PATCH v2].
>
> [RESEND] is used when you actually resend an unmodified patch, e.g. when
> the first submission was ignored for a longer time.
Will do for next time, I guess Paolo can still review the [RESEND] one
for this time to avoid my patch flush the mailing list. :)
Regards,
Wanpeng Li
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support
2019-07-26 6:10 [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support Wanpeng Li
2019-07-26 6:16 ` Wanpeng Li
@ 2019-07-26 17:22 ` kbuild test robot
1 sibling, 0 replies; 5+ messages in thread
From: kbuild test robot @ 2019-07-26 17:22 UTC (permalink / raw)
To: Wanpeng Li
Cc: kbuild-all, linux-kernel, kvm, Paolo Bonzini,
Radim =?unknown-8bit?B?S3LEjW3DocWZ?=,
Thomas Gleixner, Sean Christopherson, Nadav Amit
[-- Attachment #1: Type: text/plain, Size: 1041 bytes --]
Hi Wanpeng,
Thank you for the patch! Yet something to improve:
[auto build test ERROR on linus/master]
[cannot apply to v5.3-rc1 next-20190726]
[if your patch is applied to the wrong git tree, please drop us a note to help improve the system]
url: https://github.com/0day-ci/linux/commits/Wanpeng-Li/KVM-X86-Use-IPI-shorthands-in-kvm-guest-when-support/20190726-201453
config: x86_64-rhel (attached as .config)
compiler: gcc-7 (Debian 7.4.0-10) 7.4.0
reproduce:
# save the attached .config to linux build tree
make ARCH=x86_64
If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>
All errors (new ones prefixed by >>):
>> ld: arch/x86/kernel/kvm.o:(__jump_table+0x8): undefined reference to `apic_use_ipi_shorthand'
ld: arch/x86/kernel/kvm.o:(__jump_table+0x18): undefined reference to `apic_use_ipi_shorthand'
---
0-DAY kernel test infrastructure Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all Intel Corporation
[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 43523 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-07-26 17:23 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-26 6:10 [PATCH] KVM: X86: Use IPI shorthands in kvm guest when support Wanpeng Li
2019-07-26 6:16 ` Wanpeng Li
2019-07-26 7:20 ` Thomas Gleixner
2019-07-26 7:46 ` Wanpeng Li
2019-07-26 17:22 ` kbuild test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®