2018-11-24 08:44:13

by Luiz Capitulino

[permalink] [raw]
Subject: [PATCH] KVM: VMX: re-add ple_gap module parameter


Apparently, the ple_gap parameter was accidentally removed
by commit c8e88717cfc6b36bedea22368d97667446318291. Add it
back.

Signed-off-by: Luiz Capitulino <[email protected]>
---
arch/x86/kvm/vmx.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index 4555077d69ce..be6f13f1c25f 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -174,6 +174,7 @@ module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
* refer SDM volume 3b section 21.6.13 & 22.1.3.
*/
static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
+module_param(ple_gap, uint, 0444);

static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
module_param(ple_window, uint, 0444);
--
2.17.2



2018-11-24 08:46:59

by Liran Alon

[permalink] [raw]
Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter



> On 23 Nov 2018, at 19:02, Luiz Capitulino <[email protected]> wrote:
>
>
> Apparently, the ple_gap parameter was accidentally removed
> by commit c8e88717cfc6b36bedea22368d97667446318291. Add it
> back.
>
> Signed-off-by: Luiz Capitulino <[email protected]>

Weird that nobody noticed this when patch was applied… Thanks.
Reviewed-by: Liran Alon <[email protected]>

> ---
> arch/x86/kvm/vmx.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> index 4555077d69ce..be6f13f1c25f 100644
> --- a/arch/x86/kvm/vmx.c
> +++ b/arch/x86/kvm/vmx.c
> @@ -174,6 +174,7 @@ module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
> * refer SDM volume 3b section 21.6.13 & 22.1.3.
> */
> static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
> +module_param(ple_gap, uint, 0444);
>
> static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
> module_param(ple_window, uint, 0444);
> --
> 2.17.2
>


2018-11-24 08:47:13

by Luiz Capitulino

[permalink] [raw]
Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter

On Fri, 23 Nov 2018 19:42:53 +0200
Liran Alon <[email protected]> wrote:

> > On 23 Nov 2018, at 19:02, Luiz Capitulino <[email protected]> wrote:
> >
> >
> > Apparently, the ple_gap parameter was accidentally removed
> > by commit c8e88717cfc6b36bedea22368d97667446318291. Add it
> > back.
> >
> > Signed-off-by: Luiz Capitulino <[email protected]>
>
> Weird that nobody noticed this when patch was applied… Thanks.
> Reviewed-by: Liran Alon <[email protected]>

I forgot to mention that I noticed this because I have systems
disabling ple with ple_gap=0 in modprobe.conf. In those systems
kvm_intel won't load anymore.

>
> > ---
> > arch/x86/kvm/vmx.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> > index 4555077d69ce..be6f13f1c25f 100644
> > --- a/arch/x86/kvm/vmx.c
> > +++ b/arch/x86/kvm/vmx.c
> > @@ -174,6 +174,7 @@ module_param_named(preemption_timer, enable_preemption_timer, bool, S_IRUGO);
> > * refer SDM volume 3b section 21.6.13 & 22.1.3.
> > */
> > static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
> > +module_param(ple_gap, uint, 0444);
> >
> > static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
> > module_param(ple_window, uint, 0444);
> > --
> > 2.17.2
> >
>


2018-11-28 15:59:05

by Moger, Babu

[permalink] [raw]
Subject: RE: [PATCH] KVM: VMX: re-add ple_gap module parameter

My bad.. Sorry about this. I think this should also go to
[email protected]

> -----Original Message-----
> From: Luiz Capitulino <[email protected]>
> Sent: Friday, November 23, 2018 12:27 PM
> To: Liran Alon <[email protected]>
> Cc: Paolo Bonzini <[email protected]>; Moger, Babu
> <[email protected]>; [email protected]; linux-
> [email protected]
> Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter
>
> On Fri, 23 Nov 2018 19:42:53 +0200
> Liran Alon <[email protected]> wrote:
>
> > > On 23 Nov 2018, at 19:02, Luiz Capitulino <[email protected]>
> wrote:
> > >
> > >
> > > Apparently, the ple_gap parameter was accidentally removed
> > > by commit c8e88717cfc6b36bedea22368d97667446318291. Add it
> > > back.
> > >
> > > Signed-off-by: Luiz Capitulino <[email protected]>
> >
> > Weird that nobody noticed this when patch was applied… Thanks.
> > Reviewed-by: Liran Alon <[email protected]>
Reviewed-by: Babu Moger <[email protected]>

>
> I forgot to mention that I noticed this because I have systems
> disabling ple with ple_gap=0 in modprobe.conf. In those systems
> kvm_intel won't load anymore.
>
> >
> > > ---
> > > arch/x86/kvm/vmx.c | 1 +
> > > 1 file changed, 1 insertion(+)
> > >
> > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> > > index 4555077d69ce..be6f13f1c25f 100644
> > > --- a/arch/x86/kvm/vmx.c
> > > +++ b/arch/x86/kvm/vmx.c
> > > @@ -174,6 +174,7 @@ module_param_named(preemption_timer,
> enable_preemption_timer, bool, S_IRUGO);
> > > * refer SDM volume 3b section 21.6.13 & 22.1.3.
> > > */
> > > static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
> > > +module_param(ple_gap, uint, 0444);
> > >
> > > static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
> > > module_param(ple_window, uint, 0444);
> > > --
> > > 2.17.2
> > >
> >

2018-11-28 16:07:29

by Luiz Capitulino

[permalink] [raw]
Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter

On Wed, 28 Nov 2018 15:57:53 +0000
"Moger, Babu" <[email protected]> wrote:

> My bad.. Sorry about this. I think this should also go to
> [email protected]

No problem man, this happens. Thanks for the review!

>
> > -----Original Message-----
> > From: Luiz Capitulino <[email protected]>
> > Sent: Friday, November 23, 2018 12:27 PM
> > To: Liran Alon <[email protected]>
> > Cc: Paolo Bonzini <[email protected]>; Moger, Babu
> > <[email protected]>; [email protected]; linux-
> > [email protected]
> > Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter
> >
> > On Fri, 23 Nov 2018 19:42:53 +0200
> > Liran Alon <[email protected]> wrote:
> >
> > > > On 23 Nov 2018, at 19:02, Luiz Capitulino <[email protected]>
> > wrote:
> > > >
> > > >
> > > > Apparently, the ple_gap parameter was accidentally removed
> > > > by commit c8e88717cfc6b36bedea22368d97667446318291. Add it
> > > > back.
> > > >
> > > > Signed-off-by: Luiz Capitulino <[email protected]>
> > >
> > > Weird that nobody noticed this when patch was applied… Thanks.
> > > Reviewed-by: Liran Alon <[email protected]>
> Reviewed-by: Babu Moger <[email protected]>
>
> >
> > I forgot to mention that I noticed this because I have systems
> > disabling ple with ple_gap=0 in modprobe.conf. In those systems
> > kvm_intel won't load anymore.
> >
> > >
> > > > ---
> > > > arch/x86/kvm/vmx.c | 1 +
> > > > 1 file changed, 1 insertion(+)
> > > >
> > > > diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
> > > > index 4555077d69ce..be6f13f1c25f 100644
> > > > --- a/arch/x86/kvm/vmx.c
> > > > +++ b/arch/x86/kvm/vmx.c
> > > > @@ -174,6 +174,7 @@ module_param_named(preemption_timer,
> > enable_preemption_timer, bool, S_IRUGO);
> > > > * refer SDM volume 3b section 21.6.13 & 22.1.3.
> > > > */
> > > > static unsigned int ple_gap = KVM_DEFAULT_PLE_GAP;
> > > > +module_param(ple_gap, uint, 0444);
> > > >
> > > > static unsigned int ple_window = KVM_VMX_DEFAULT_PLE_WINDOW;
> > > > module_param(ple_window, uint, 0444);
> > > > --
> > > > 2.17.2
> > > >
> > >
>


2018-11-28 16:14:07

by Sasha Levin

[permalink] [raw]
Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter

On Wed, Nov 28, 2018 at 03:57:53PM +0000, Moger, Babu wrote:
>My bad.. Sorry about this. I think this should also go to
>[email protected]

Please actually add the stable tag in the commit message if you intend
for this patch to go in stable.

--
Thanks,
Sasha

2018-11-28 16:43:02

by Paolo Bonzini

[permalink] [raw]
Subject: Re: [PATCH] KVM: VMX: re-add ple_gap module parameter

On 28/11/18 17:11, Sasha Levin wrote:
> On Wed, Nov 28, 2018 at 03:57:53PM +0000, Moger, Babu wrote:
>> My bad.. Sorry about this. I think this should also go to
>> [email protected]
>
> Please actually add the stable tag in the commit message if you intend
> for this patch to go in stable.

No worries, the patch is already on its way to Linus with the stable tag.

Paolo