public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86, hyperv: bypass the timer_irq_works() check
@ 2014-01-24  6:02 Jason Wang
  2014-01-24 21:16 ` KY Srinivasan
  2014-01-24 21:20 ` H. Peter Anvin
  0 siblings, 2 replies; 5+ messages in thread
From: Jason Wang @ 2014-01-24  6:02 UTC (permalink / raw)
  To: kys, haiyangz, tglx, mingo, hpa, x86, devel, linux-kernel; +Cc: Jason Wang

This patch bypass the timer_irq_works() check for hyperv guest since:

- It was guaranteed to work.
- timer_irq_works() may fail sometime due to the lpj calibration were inaccurate
  in a hyperv guest or a buggy host.

In the future, we should get the tsc frequency from hypervisor and use preset
lpj instead.

Cc: K. Y. Srinivasan <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
 arch/x86/kernel/cpu/mshyperv.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
index 9f7ca26..832d05a 100644
--- a/arch/x86/kernel/cpu/mshyperv.c
+++ b/arch/x86/kernel/cpu/mshyperv.c
@@ -26,6 +26,7 @@
 #include <asm/irq_regs.h>
 #include <asm/i8259.h>
 #include <asm/apic.h>
+#include <asm/timer.h>
 
 struct ms_hyperv_info ms_hyperv;
 EXPORT_SYMBOL_GPL(ms_hyperv);
@@ -105,6 +106,11 @@ static void __init ms_hyperv_init_platform(void)
 
 	if (ms_hyperv.features & HV_X64_MSR_TIME_REF_COUNT_AVAILABLE)
 		clocksource_register_hz(&hyperv_cs, NSEC_PER_SEC/100);
+
+#ifdef CONFIG_X86_IO_APIC
+	no_timer_check = 1;
+#endif
+
 }
 
 const __refconst struct hypervisor_x86 x86_hyper_ms_hyperv = {
-- 
1.8.3.2


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

* RE: [PATCH] x86, hyperv: bypass the timer_irq_works() check
  2014-01-24  6:02 [PATCH] x86, hyperv: bypass the timer_irq_works() check Jason Wang
@ 2014-01-24 21:16 ` KY Srinivasan
  2014-01-24 21:20 ` H. Peter Anvin
  1 sibling, 0 replies; 5+ messages in thread
From: KY Srinivasan @ 2014-01-24 21:16 UTC (permalink / raw)
  To: Jason Wang, Haiyang Zhang, tglx@linutronix.de, mingo@redhat.com,
	hpa@zytor.com, x86@kernel.org, devel@linuxdriverproject.org,
	linux-kernel@vger.kernel.org



> -----Original Message-----
> From: Jason Wang [mailto:jasowang@redhat.com]
> Sent: Thursday, January 23, 2014 10:03 PM
> To: KY Srinivasan; Haiyang Zhang; tglx@linutronix.de; mingo@redhat.com;
> hpa@zytor.com; x86@kernel.org; devel@linuxdriverproject.org; linux-
> kernel@vger.kernel.org
> Cc: Jason Wang
> Subject: [PATCH] x86, hyperv: bypass the timer_irq_works() check
> 
> This patch bypass the timer_irq_works() check for hyperv guest since:
> 
> - It was guaranteed to work.
> - timer_irq_works() may fail sometime due to the lpj calibration were inaccurate
>   in a hyperv guest or a buggy host.
> 
> In the future, we should get the tsc frequency from hypervisor and use preset
> lpj instead.
> 
> Cc: K. Y. Srinivasan <kys@microsoft.com>
> Cc: Haiyang Zhang <haiyangz@microsoft.com>
> Signed-off-by: Jason Wang <jasowang@redhat.com>

Thanks Jason.
Acked-by: K. Y. Srinivasan <kys@microsoft.com>
> ---
>  arch/x86/kernel/cpu/mshyperv.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/arch/x86/kernel/cpu/mshyperv.c b/arch/x86/kernel/cpu/mshyperv.c
> index 9f7ca26..832d05a 100644
> --- a/arch/x86/kernel/cpu/mshyperv.c
> +++ b/arch/x86/kernel/cpu/mshyperv.c
> @@ -26,6 +26,7 @@
>  #include <asm/irq_regs.h>
>  #include <asm/i8259.h>
>  #include <asm/apic.h>
> +#include <asm/timer.h>
> 
>  struct ms_hyperv_info ms_hyperv;
>  EXPORT_SYMBOL_GPL(ms_hyperv);
> @@ -105,6 +106,11 @@ static void __init ms_hyperv_init_platform(void)
> 
>  	if (ms_hyperv.features & HV_X64_MSR_TIME_REF_COUNT_AVAILABLE)
>  		clocksource_register_hz(&hyperv_cs, NSEC_PER_SEC/100);
> +
> +#ifdef CONFIG_X86_IO_APIC
> +	no_timer_check = 1;
> +#endif
> +
>  }
> 
>  const __refconst struct hypervisor_x86 x86_hyper_ms_hyperv = {
> --
> 1.8.3.2


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

* Re: [PATCH] x86, hyperv: bypass the timer_irq_works() check
  2014-01-24  6:02 [PATCH] x86, hyperv: bypass the timer_irq_works() check Jason Wang
  2014-01-24 21:16 ` KY Srinivasan
@ 2014-01-24 21:20 ` H. Peter Anvin
  2014-01-26  4:42   ` Jason Wang
  1 sibling, 1 reply; 5+ messages in thread
From: H. Peter Anvin @ 2014-01-24 21:20 UTC (permalink / raw)
  To: Jason Wang, kys, haiyangz, tglx, mingo, x86, devel, linux-kernel

On 01/23/2014 10:02 PM, Jason Wang wrote:
> This patch bypass the timer_irq_works() check for hyperv guest since:
> 
> - It was guaranteed to work.
> - timer_irq_works() may fail sometime due to the lpj calibration were inaccurate
>   in a hyperv guest or a buggy host.
> 
> In the future, we should get the tsc frequency from hypervisor and use preset
> lpj instead.
> 
> Cc: K. Y. Srinivasan <kys@microsoft.com>
> Cc: Haiyang Zhang <haiyangz@microsoft.com>
> Signed-off-by: Jason Wang <jasowang@redhat.com>

This should be in -stable, right?

	-hpa



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

* Re: [PATCH] x86, hyperv: bypass the timer_irq_works() check
  2014-01-24 21:20 ` H. Peter Anvin
@ 2014-01-26  4:42   ` Jason Wang
  2014-02-11  8:30     ` Jason Wang
  0 siblings, 1 reply; 5+ messages in thread
From: Jason Wang @ 2014-01-26  4:42 UTC (permalink / raw)
  To: H. Peter Anvin, kys, haiyangz, tglx, mingo, x86, devel,
	linux-kernel
  Cc: stable@vger.kernel.org >> Stable

On 01/25/2014 05:20 AM, H. Peter Anvin wrote:
> On 01/23/2014 10:02 PM, Jason Wang wrote:
>> This patch bypass the timer_irq_works() check for hyperv guest since:
>>
>> - It was guaranteed to work.
>> - timer_irq_works() may fail sometime due to the lpj calibration were inaccurate
>>   in a hyperv guest or a buggy host.
>>
>> In the future, we should get the tsc frequency from hypervisor and use preset
>> lpj instead.
>>
>> Cc: K. Y. Srinivasan <kys@microsoft.com>
>> Cc: Haiyang Zhang <haiyangz@microsoft.com>
>> Signed-off-by: Jason Wang <jasowang@redhat.com>
> This should be in -stable, right?
>
> 	-hpa
>
>

Oh, right.

Cc: <stable@vger.kernel.org>

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

* Re: [PATCH] x86, hyperv: bypass the timer_irq_works() check
  2014-01-26  4:42   ` Jason Wang
@ 2014-02-11  8:30     ` Jason Wang
  0 siblings, 0 replies; 5+ messages in thread
From: Jason Wang @ 2014-02-11  8:30 UTC (permalink / raw)
  To: H. Peter Anvin, kys, haiyangz, tglx, mingo, x86, devel,
	linux-kernel
  Cc: stable@vger.kernel.org >> Stable

On 01/26/2014 12:42 PM, Jason Wang wrote:
> On 01/25/2014 05:20 AM, H. Peter Anvin wrote:
>> On 01/23/2014 10:02 PM, Jason Wang wrote:
>>> This patch bypass the timer_irq_works() check for hyperv guest since:
>>>
>>> - It was guaranteed to work.
>>> - timer_irq_works() may fail sometime due to the lpj calibration were inaccurate
>>>   in a hyperv guest or a buggy host.
>>>
>>> In the future, we should get the tsc frequency from hypervisor and use preset
>>> lpj instead.
>>>
>>> Cc: K. Y. Srinivasan <kys@microsoft.com>
>>> Cc: Haiyang Zhang <haiyangz@microsoft.com>
>>> Signed-off-by: Jason Wang <jasowang@redhat.com>
>> This should be in -stable, right?
>>
>> 	-hpa
>>
>>
> Oh, right.
>
> Cc: <stable@vger.kernel.org>

Ping, need I resend the patch or it's ok for you to apply?

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

end of thread, other threads:[~2014-02-11  8:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-24  6:02 [PATCH] x86, hyperv: bypass the timer_irq_works() check Jason Wang
2014-01-24 21:16 ` KY Srinivasan
2014-01-24 21:20 ` H. Peter Anvin
2014-01-26  4:42   ` Jason Wang
2014-02-11  8:30     ` Jason Wang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox