From: Krister Johansen <kjlx@templeofstupid.com>
To: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Krister Johansen <kjlx@templeofstupid.com>,
Juergen Gross <jgross@suse.com>,
Thomas Gleixner <tglx@linutronix.de>,
Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
x86@kernel.org, "H. Peter Anvin" <hpa@zytor.com>,
xen-devel@lists.xenproject.org, linux-kernel@vger.kernel.org,
Marcelo Tosatti <mtosatti@redhat.com>,
Anthony Liguori <aliguori@amazon.com>,
David Reaver <me@davidreaver.com>,
Brendan Gregg <brendan@intel.com>
Subject: Re: [PATCH linux-next] x86/xen/time: prefer tsc as clocksource when it is invariant
Date: Mon, 12 Dec 2022 07:57:30 -0800 [thread overview]
Message-ID: <20221212155730.GA1973@templeofstupid.com> (raw)
In-Reply-To: <1e6c1b08-d573-fba9-61fd-d40a74427d46@oracle.com>
On Fri, Dec 09, 2022 at 02:32:15PM -0500, Boris Ostrovsky wrote:
>
> On 12/8/22 11:36 AM, Krister Johansen wrote:
> > + /*
> > + * As Dom0 is never moved, no penalty on using TSC there.
> > + *
> > + * If the guest has invariant tsc, then set xen_clocksource rating
> > + * below that of the tsc so that the system prefers tsc instead. This
> > + * check excludes PV domains, because PV is unable to guarantee that the
> > + * guest's cpuid call has been intercepted by the hypervisor.
> > + */
> > + if (xen_initial_domain()) {
> > xen_clocksource.rating = 275;
> > + } else if ((xen_hvm_domain() || xen_pvh_domain()) &&
> > + boot_cpu_has(X86_FEATURE_CONSTANT_TSC) &&
> > + boot_cpu_has(X86_FEATURE_NONSTOP_TSC) &&
> > + !check_tsc_unstable()) {
> > + xen_clocksource.rating = 299;
> > + }
>
>
> What if RDTSC is intercepted?
Right, thanks. I'll send out an updated patch here shortly that
attempts to address this by examining the cpuid information to determine
if the tsc is being emulated.
-K
next prev parent reply other threads:[~2022-12-12 16:04 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-12-08 16:36 [PATCH linux-next] x86/xen/time: prefer tsc as clocksource when it is invariant Krister Johansen
2022-12-09 19:32 ` Boris Ostrovsky
2022-12-12 15:57 ` Krister Johansen [this message]
2022-12-12 16:05 ` [PATCH linux-next v2] " Krister Johansen
2022-12-12 16:46 ` Jan Beulich
2022-12-12 22:05 ` Krister Johansen
2022-12-13 7:23 ` Jan Beulich
2022-12-13 18:58 ` Krister Johansen
2022-12-14 8:17 ` Jan Beulich
2022-12-14 18:01 ` Krister Johansen
2022-12-12 18:48 ` Boris Ostrovsky
2022-12-12 22:09 ` Krister Johansen
2022-12-13 21:25 ` Boris Ostrovsky
2022-12-14 18:01 ` Krister Johansen
2022-12-14 21:46 ` Boris Ostrovsky
2022-12-16 16:20 ` Krister Johansen
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=20221212155730.GA1973@templeofstupid.com \
--to=kjlx@templeofstupid.com \
--cc=aliguori@amazon.com \
--cc=boris.ostrovsky@oracle.com \
--cc=bp@alien8.de \
--cc=brendan@intel.com \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=jgross@suse.com \
--cc=linux-kernel@vger.kernel.org \
--cc=me@davidreaver.com \
--cc=mingo@redhat.com \
--cc=mtosatti@redhat.com \
--cc=tglx@linutronix.de \
--cc=x86@kernel.org \
--cc=xen-devel@lists.xenproject.org \
/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