From: Andrew Cooper <andrew.cooper3@citrix.com>
To: "Roger Pau Monné" <roger.pau@citrix.com>
Cc: Kevin Tian <kevin.tian@intel.com>, Wei Liu <wei.liu2@citrix.com>,
Jun Nakajima <jun.nakajima@intel.com>,
Jan Beulich <JBeulich@suse.com>,
Xen-devel <xen-devel@lists.xen.org>
Subject: Re: [PATCH 5/6] x86/vmx: Defer vmx_vmcs_exit() as long as possible in construct_vmcs()
Date: Wed, 6 Jun 2018 11:11:33 +0100 [thread overview]
Message-ID: <442f2a53-522f-37ed-b5d2-3da227f75cbb@citrix.com> (raw)
In-Reply-To: <20180606094528.vxdxtaf33ofbibgs@MacBook-Pro-de-Roger.local>
On 06/06/18 10:45, Roger Pau Monné wrote:
> On Mon, May 28, 2018 at 03:27:57PM +0100, Andrew Cooper wrote:
>> paging_update_paging_modes() and vmx_vlapic_msr_changed() both operate on the
>> VMCS being constructed. Avoid dropping and re-acquiring the reference
>> multiple times.
>>
>> Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
>> ---
>> CC: Jan Beulich <JBeulich@suse.com>
>> CC: Jun Nakajima <jun.nakajima@intel.com>
>> CC: Kevin Tian <kevin.tian@intel.com>
>> CC: Wei Liu <wei.liu2@citrix.com>
>> CC: Roger Pau Monné <roger.pau@citrix.com>
>> ---
>> xen/arch/x86/hvm/vmx/vmcs.c | 10 ++++++----
>> 1 file changed, 6 insertions(+), 4 deletions(-)
>>
>> diff --git a/xen/arch/x86/hvm/vmx/vmcs.c b/xen/arch/x86/hvm/vmx/vmcs.c
>> index be02be1..ce78f19 100644
>> --- a/xen/arch/x86/hvm/vmx/vmcs.c
>> +++ b/xen/arch/x86/hvm/vmx/vmcs.c
>> @@ -996,6 +996,7 @@ static int construct_vmcs(struct vcpu *v)
>> struct domain *d = v->domain;
>> u32 vmexit_ctl = vmx_vmexit_control;
>> u32 vmentry_ctl = vmx_vmentry_control;
>> + int rc;
>>
>> vmx_vmcs_enter(v);
>>
>> @@ -1083,8 +1084,8 @@ static int construct_vmcs(struct vcpu *v)
>>
>> if ( msr_bitmap == NULL )
>> {
>> - vmx_vmcs_exit(v);
>> - return -ENOMEM;
>> + rc = -ENOMEM;
>> + goto out;
>> }
>>
>> memset(msr_bitmap, ~0, PAGE_SIZE);
>> @@ -1258,13 +1259,14 @@ static int construct_vmcs(struct vcpu *v)
>> if ( cpu_has_vmx_tsc_scaling )
>> __vmwrite(TSC_MULTIPLIER, d->arch.hvm_domain.tsc_scaling_ratio);
>>
>> - vmx_vmcs_exit(v);
>> -
>> /* will update HOST & GUEST_CR3 as reqd */
>> paging_update_paging_modes(v);
>>
>> vmx_vlapic_msr_changed(v);
>>
>> + out:
>> + vmx_vmcs_exit(v);
>> +
>> return 0;
> Shouldn't you return rc here? Or else you lose the error value.
Yeah - Coverity told me the same... Fixed up.
~Andrew
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2018-06-06 10:11 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-28 14:27 [PATCH 0/6] x86/vmx: Misc fixes and improvements Andrew Cooper
2018-05-28 14:27 ` [PATCH 1/6] x86/vmx: Fix handing of MSR_DEBUGCTL on VMExit Andrew Cooper
2018-05-29 10:33 ` Jan Beulich
2018-05-29 18:08 ` Andrew Cooper
2018-05-30 7:32 ` Jan Beulich
2018-05-30 10:28 ` Andrew Cooper
2018-05-30 10:49 ` Jan Beulich
2018-05-30 17:34 ` [PATCH v2 " Andrew Cooper
2018-06-01 9:28 ` Jan Beulich
2018-06-05 7:54 ` Tian, Kevin
2018-05-28 14:27 ` [PATCH 2/6] x86: Improvements to ler debugging Andrew Cooper
2018-05-29 11:39 ` Jan Beulich
2018-05-29 18:09 ` Andrew Cooper
2018-06-05 7:55 ` Tian, Kevin
2018-05-28 14:27 ` [PATCH 3/6] x86/pat: Simplify host PAT handling Andrew Cooper
2018-05-29 11:40 ` Jan Beulich
2018-06-06 9:39 ` Roger Pau Monné
2018-05-28 14:27 ` [PATCH 4/6] x86/vmx: Simplify PAT handling during vcpu construction Andrew Cooper
2018-05-29 11:41 ` Jan Beulich
2018-06-05 7:57 ` Tian, Kevin
2018-06-06 9:42 ` Roger Pau Monné
2018-05-28 14:27 ` [PATCH 5/6] x86/vmx: Defer vmx_vmcs_exit() as long as possible in construct_vmcs() Andrew Cooper
2018-05-29 11:43 ` Jan Beulich
2018-06-05 8:00 ` Tian, Kevin
2018-06-06 9:45 ` Roger Pau Monné
2018-06-06 10:11 ` Andrew Cooper [this message]
2018-05-28 14:27 ` [PATCH 6/6] x86/vmx: Drop VMX signal for full real-mode Andrew Cooper
2018-06-05 8:01 ` Tian, Kevin
2018-06-06 10:03 ` Roger Pau Monné
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=442f2a53-522f-37ed-b5d2-3da227f75cbb@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=jun.nakajima@intel.com \
--cc=kevin.tian@intel.com \
--cc=roger.pau@citrix.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.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;
as well as URLs for NNTP newsgroup(s).