From: Wei Liu <wei.liu2@citrix.com>
To: Xen-devel <xen-devel@lists.xenproject.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Wei Liu <wei.liu2@citrix.com>, Jan Beulich <JBeulich@suse.com>
Subject: [PATCH for-next 2/8] x86/domain: factor out pv_vcpu_initialise
Date: Mon, 10 Apr 2017 14:27:10 +0100 [thread overview]
Message-ID: <20170410132716.31610-3-wei.liu2@citrix.com> (raw)
In-Reply-To: <20170410132716.31610-1-wei.liu2@citrix.com>
No functional change.
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
xen/arch/x86/domain.c | 65 ++++++++++++++++++++++++++++-----------------------
1 file changed, 36 insertions(+), 29 deletions(-)
diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c
index 90e2b1f82a..96c777c771 100644
--- a/xen/arch/x86/domain.c
+++ b/xen/arch/x86/domain.c
@@ -387,37 +387,10 @@ int switch_compat(struct domain *d)
return rc;
}
-int vcpu_initialise(struct vcpu *v)
+static int pv_vcpu_initialise(struct vcpu *v)
{
struct domain *d = v->domain;
- int rc;
-
- v->arch.flags = TF_kernel_mode;
-
- rc = mapcache_vcpu_init(v);
- if ( rc )
- return rc;
-
- if ( !is_idle_domain(d) )
- {
- paging_vcpu_init(v);
-
- if ( (rc = vcpu_init_fpu(v)) != 0 )
- return rc;
-
- vmce_init_vcpu(v);
- }
- else if ( (rc = xstate_alloc_save_area(v)) != 0 )
- return rc;
-
- spin_lock_init(&v->arch.vpmu.vpmu_lock);
-
- if ( is_hvm_domain(d) )
- {
- rc = hvm_vcpu_initialise(v);
- goto done;
- }
-
+ int rc = 0;
spin_lock_init(&v->arch.pv_vcpu.shadow_ldt_lock);
@@ -458,7 +431,41 @@ int vcpu_initialise(struct vcpu *v)
goto done;
}
}
+
done:
+ return rc;
+}
+
+int vcpu_initialise(struct vcpu *v)
+{
+ struct domain *d = v->domain;
+ int rc;
+
+ v->arch.flags = TF_kernel_mode;
+
+ rc = mapcache_vcpu_init(v);
+ if ( rc )
+ return rc;
+
+ if ( !is_idle_domain(d) )
+ {
+ paging_vcpu_init(v);
+
+ if ( (rc = vcpu_init_fpu(v)) != 0 )
+ return rc;
+
+ vmce_init_vcpu(v);
+ }
+ else if ( (rc = xstate_alloc_save_area(v)) != 0 )
+ return rc;
+
+ spin_lock_init(&v->arch.vpmu.vpmu_lock);
+
+ if ( is_hvm_domain(d) )
+ rc = hvm_vcpu_initialise(v);
+ else
+ rc = pv_vcpu_initialise(v);
+
if ( rc )
{
vcpu_destroy_fpu(v);
--
2.11.0
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2017-04-10 14:06 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-04-10 13:27 [PATCH for-next 0/8] Refactor x86/domain.c Wei Liu
2017-04-10 13:27 ` [PATCH for-next 1/8] xen.h: fix comment for vcpu_guest_context Wei Liu
2017-04-24 9:51 ` Jan Beulich
2017-04-24 10:24 ` Julien Grall
2017-04-24 10:42 ` Wei Liu
2017-04-24 12:29 ` Jan Beulich
2017-04-24 12:55 ` Wei Liu
2017-04-10 13:27 ` Wei Liu [this message]
2017-04-24 9:57 ` [PATCH for-next 2/8] x86/domain: factor out pv_vcpu_initialise Jan Beulich
2017-04-24 11:16 ` Wei Liu
2017-04-10 13:27 ` [PATCH for-next 3/8] x86/domain: factor out pv_vcpu_destroy Wei Liu
2017-04-24 9:59 ` Jan Beulich
2017-04-10 13:27 ` [PATCH for-next 4/8] x86/domain: push some code down to hvm_domain_initialise Wei Liu
2017-04-10 15:19 ` Andrew Cooper
2017-04-25 12:15 ` Wei Liu
2017-04-24 10:10 ` Jan Beulich
2017-04-24 14:55 ` Wei Liu
2017-04-10 13:27 ` [PATCH for-next 5/8] x86/domain: factor out pv_domain_destroy Wei Liu
2017-04-10 15:04 ` Andrew Cooper
2017-04-10 15:12 ` Wei Liu
2017-04-10 15:16 ` Andrew Cooper
2017-04-10 15:22 ` Wei Liu
2017-04-10 15:27 ` Andrew Cooper
2017-04-24 10:11 ` Jan Beulich
2017-04-10 13:27 ` [PATCH for-next 6/8] x86/domain: factor out pv_domain_initialise Wei Liu
2017-04-24 10:20 ` Jan Beulich
2017-04-25 13:37 ` Wei Liu
2017-04-10 13:27 ` [PATCH for-next 7/8] x86/domain: move PV specific code to pv/domain.c Wei Liu
2017-04-24 12:39 ` Jan Beulich
2017-04-24 14:24 ` Wei Liu
2017-04-24 15:57 ` Jan Beulich
2017-04-10 13:27 ` [PATCH for-next 8/8] x86/domain: move HVM specific code to hvm/domain.c Wei Liu
2017-04-24 12:41 ` Jan Beulich
2017-04-24 13:12 ` 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=20170410132716.31610-3-wei.liu2@citrix.com \
--to=wei.liu2@citrix.com \
--cc=JBeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--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;
as well as URLs for NNTP newsgroup(s).