Kernel KVM virtualization development
 help / color / mirror / Atom feed
From: Vitaly Kuznetsov <vkuznets@redhat.com>
To: Wanpeng Li <kernellwp@gmail.com>, kvm@vger.kernel.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
	Sean Christopherson <sean.j.christopherson@intel.com>,
	Wanpeng Li <wanpengli@tencent.com>,
	Jim Mattson <jmattson@google.com>, Joerg Roedel <joro@8bytes.org>
Subject: Re: [kvm-unit-tests PATCH] x86: tscdeadline timer testing when apic is hw disabled
Date: Mon, 03 Aug 2020 14:41:18 +0200	[thread overview]
Message-ID: <87wo2fq4up.fsf@vitty.brq.redhat.com> (raw)
In-Reply-To: <1596441715-14959-1-git-send-email-wanpengli@tencent.com>

Wanpeng Li <kernellwp@gmail.com> writes:

> From: Wanpeng Li <wanpengli@tencent.com>
>
> This patch adds tscdeadline timer testing when apic is hw disabled.
>
> Signed-off-by: Wanpeng Li <wanpengli@tencent.com>
> ---
>  x86/apic.c | 27 +++++++++++++++++++++------
>  1 file changed, 21 insertions(+), 6 deletions(-)
>
> diff --git a/x86/apic.c b/x86/apic.c
> index a7681fe..bcf56e2 100644
> --- a/x86/apic.c
> +++ b/x86/apic.c
> @@ -30,15 +30,18 @@ static void tsc_deadline_timer_isr(isr_regs_t *regs)
>      eoi();
>  }
>  
> -static void __test_tsc_deadline_timer(void)
> +static void __test_tsc_deadline_timer(bool apic_enabled)
>  {
>      handle_irq(TSC_DEADLINE_TIMER_VECTOR, tsc_deadline_timer_isr);
>      irq_enable();
>  
>      wrmsr(MSR_IA32_TSCDEADLINE, rdmsr(MSR_IA32_TSC));
>      asm volatile ("nop");
> -    report(tdt_count == 1, "tsc deadline timer");
> -    report(rdmsr(MSR_IA32_TSCDEADLINE) == 0, "tsc deadline timer clearing");
> +    if (apic_enabled) {
> +        report(tdt_count == 1, "tsc deadline timer");
> +        report(rdmsr(MSR_IA32_TSCDEADLINE) == 0, "tsc deadline timer clearing");
> +    } else
> +        report(rdmsr(MSR_IA32_TSCDEADLINE) == 0, "tsc deadline timer is not set");

I'd suggest we also check that the timer didn't fire, e.g.

report(tdt_count == 0, "tsc deadline timer didn't fire");

as a bonus, we'd get another reason to use braces for both branches of
the 'if' (which is a good thing regardless).

>  }
>  
>  static int enable_tsc_deadline_timer(void)
> @@ -54,10 +57,10 @@ static int enable_tsc_deadline_timer(void)
>      }
>  }
>  
> -static void test_tsc_deadline_timer(void)
> +static void test_tsc_deadline_timer(bool apic_enabled)
>  {
>      if(enable_tsc_deadline_timer()) {
> -        __test_tsc_deadline_timer();
> +        __test_tsc_deadline_timer(apic_enabled);
>      } else {
>          report_skip("tsc deadline timer not detected");
>      }
> @@ -132,6 +135,17 @@ static void verify_disabled_apic_mmio(void)
>      write_cr8(cr8);
>  }
>  
> +static void verify_disabled_apic_tsc_deadline_timer(void)
> +{
> +    reset_apic();
> +    if (enable_tsc_deadline_timer()) {
> +        disable_apic();
> +        __test_tsc_deadline_timer(false);
> +    } else {
> +        report_skip("tsc deadline timer not detected");
> +    }
> +}
> +
>  static void test_apic_disable(void)
>  {
>      volatile u32 *lvr = (volatile u32 *)(APIC_DEFAULT_PHYS_BASE + APIC_LVR);
> @@ -148,6 +162,7 @@ static void test_apic_disable(void)
>      report(!this_cpu_has(X86_FEATURE_APIC),
>             "CPUID.1H:EDX.APIC[bit 9] is clear");
>      verify_disabled_apic_mmio();
> +    verify_disabled_apic_tsc_deadline_timer();
>  
>      reset_apic();
>      report((rdmsr(MSR_IA32_APICBASE) & (APIC_EN | APIC_EXTD)) == APIC_EN,
> @@ -668,7 +683,7 @@ int main(void)
>  
>      test_apic_timer_one_shot();
>      test_apic_change_mode();
> -    test_tsc_deadline_timer();
> +    test_tsc_deadline_timer(true);
>  
>      return report_summary();
>  }

-- 
Vitaly


  reply	other threads:[~2020-08-03 12:41 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-08-03  8:01 [kvm-unit-tests PATCH] x86: tscdeadline timer testing when apic is hw disabled Wanpeng Li
2020-08-03 12:41 ` Vitaly Kuznetsov [this message]
2020-08-03 12:56   ` Paolo Bonzini
2020-08-04  7:08     ` Wanpeng Li

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wo2fq4up.fsf@vitty.brq.redhat.com \
    --to=vkuznets@redhat.com \
    --cc=jmattson@google.com \
    --cc=joro@8bytes.org \
    --cc=kernellwp@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=sean.j.christopherson@intel.com \
    --cc=wanpengli@tencent.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox