From: Jan Beulich <jbeulich@suse.com>
To: Roger Pau Monne <roger.pau@citrix.com>
Cc: Jun Nakajima <jun.nakajima@intel.com>,
Kevin Tian <kevin.tian@intel.com>,
Andrew Cooper <andrew.cooper3@citrix.com>, Wei Liu <wl@xen.org>,
xen-devel@lists.xenproject.org
Subject: Re: [PATCH 4/5] x86/vmx: handle no model-specific LBR presence
Date: Mon, 30 May 2022 18:02:02 +0200 [thread overview]
Message-ID: <230bb122-de08-3279-29d7-1353449845ae@suse.com> (raw)
In-Reply-To: <20220520133746.66142-5-roger.pau@citrix.com>
On 20.05.2022 15:37, Roger Pau Monne wrote:
> --- a/xen/arch/x86/hvm/vmx/vmx.c
> +++ b/xen/arch/x86/hvm/vmx/vmx.c
> @@ -3007,6 +3007,8 @@ static const struct lbr_info {
> { MSR_GM_LASTBRANCH_0_FROM_IP, NUM_MSR_GM_LASTBRANCH_FROM_TO },
> { MSR_GM_LASTBRANCH_0_TO_IP, NUM_MSR_GM_LASTBRANCH_FROM_TO },
> { 0, 0 }
> +}, no_lbr[] = {
> + {0, 0}
> };
Instead of introducing this and ...
> @@ -3070,6 +3072,21 @@ static const struct lbr_info *last_branch_msr_get(void)
> /* Goldmont */
> case 0x5c: case 0x5f:
> return gm_lbr;
> +
> + default:
> + if ( cpu_has_pdcm )
> + {
> + uint64_t cap;
> +
> + rdmsrl(MSR_IA32_PERF_CAPABILITIES, cap);
> + if ( (cap & MSR_IA32_PERF_CAP_LBR_FORMAT) == 0x3f )
> + /*
> + * On processors that do not support model-specific LBRs,
> + * PERF_CAPABILITIES.LBR_FMT will have the value 0x3f.
> + */
> + return no_lbr;
... doing this MSR read every time, can't you store a mask value
once during boot, which you apply to msr_content ...
> @@ -3521,6 +3538,8 @@ static int cf_check vmx_msr_write_intercept(
> return X86EMUL_OKAY;
> }
>
> + if ( lbr->count )
> + {
> for ( ; lbr->count; lbr++ )
> {
> unsigned int i;
... ahead of the bigger if() enclosing this code (thus also avoiding
the need to re-indent)?
Jan
next prev parent reply other threads:[~2022-05-30 16:02 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-20 13:37 [PATCH 0/5] x86/lbr: handle lack of model-specific LBRs Roger Pau Monne
2022-05-20 13:37 ` [PATCH 1/5] x86/ler: use feature flag to check if option is enabled Roger Pau Monne
2022-05-30 15:00 ` Jan Beulich
2022-05-20 13:37 ` [PATCH 2/5] x86/lbr: enable hypervisor LER with arch LBR Roger Pau Monne
2022-05-30 15:31 ` Jan Beulich
2022-07-01 15:39 ` Roger Pau Monné
2022-07-04 6:15 ` Jan Beulich
2022-07-04 8:23 ` Roger Pau Monné
2022-05-20 13:37 ` [PATCH 3/5] x86/perf: expose LBR format in PERF_CAPABILITIES Roger Pau Monne
2022-05-20 14:10 ` Andrew Cooper
2022-05-20 14:19 ` Jan Beulich
2022-05-20 14:58 ` Andrew Cooper
2022-05-23 8:04 ` Roger Pau Monné
2022-05-23 8:12 ` Jan Beulich
2022-05-23 9:53 ` Roger Pau Monné
2022-05-20 14:52 ` Roger Pau Monné
2022-05-20 13:37 ` [PATCH 4/5] x86/vmx: handle no model-specific LBR presence Roger Pau Monne
2022-05-30 16:02 ` Jan Beulich [this message]
2022-05-20 13:37 ` [PATCH 5/5] x86/vmx: fix indentation of LBR Roger Pau Monne
2022-06-29 6:40 ` Tian, Kevin
2022-06-17 3:24 ` [PATCH 0/5] x86/lbr: handle lack of model-specific LBRs Henry Wang
2022-07-06 7:30 ` Henry Wang
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=230bb122-de08-3279-29d7-1353449845ae@suse.com \
--to=jbeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=jun.nakajima@intel.com \
--cc=kevin.tian@intel.com \
--cc=roger.pau@citrix.com \
--cc=wl@xen.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.