|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 2/4] x86/altp2m: Rework #VE enable/disable paths
Split altp2m_vcpu_{enable,disable}_ve() out of the
HVMOP_altp2m_vcpu_{enable,disable}_notify marshalling logic. A future change
is going to need to call altp2m_vcpu_disable_ve() from the domain_kill() path.
While at it, clean up the logic in altp2m_vcpu_{initialise,destroy}().
altp2m_vcpu_reset() has no external callers, so fold it into its two
callsites. This in turn allows for altp2m_vcpu_destroy() to reuse
altp2m_vcpu_disable_ve() rather than opencoding it.
No practical change.
Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
---
CC: Jan Beulich <JBeulich@xxxxxxxx>
CC: Wei Liu <wei.liu2@xxxxxxxxxx>
CC: Roger Pau Monné <roger.pau@xxxxxxxxxx>
CC: Razvan Cojocaru <rcojocaru@xxxxxxxxxxxxxxx>
CC: Tamas K Lengyel <tamas@xxxxxxxxxxxxx>
CC: Juergen Gross <jgross@xxxxxxxx>
---
xen/arch/x86/hvm/hvm.c | 19 ++-----------------
xen/arch/x86/mm/altp2m.c | 39 +++++++++++++++++++++++++++------------
xen/include/asm-x86/altp2m.h | 4 +++-
3 files changed, 32 insertions(+), 30 deletions(-)
diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c
index 79c7d81..a80ddcf 100644
--- a/xen/arch/x86/hvm/hvm.c
+++ b/xen/arch/x86/hvm/hvm.c
@@ -4568,7 +4568,6 @@ static int do_altp2m_op(
case HVMOP_altp2m_vcpu_enable_notify:
{
struct vcpu *v;
- p2m_type_t p2mt;
if ( a.u.enable_notify.pad ||
a.u.enable_notify.vcpu_id >= d->max_vcpus )
@@ -4585,16 +4584,7 @@ static int do_altp2m_op(
v = d->vcpu[a.u.enable_notify.vcpu_id];
- if ( !gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) ||
- mfn_eq(get_gfn_query_unlocked(v->domain,
- a.u.enable_notify.gfn, &p2mt), INVALID_MFN) )
- {
- rc = -EINVAL;
- break;
- }
-
- vcpu_altp2m(v).veinfo_gfn = _gfn(a.u.enable_notify.gfn);
- altp2m_vcpu_update_vmfunc_ve(v);
+ rc = altp2m_vcpu_enable_ve(v, _gfn(a.u.enable_notify.gfn));
break;
}
@@ -4616,12 +4606,7 @@ static int do_altp2m_op(
v = d->vcpu[a.u.enable_notify.vcpu_id];
- /* Already disabled, nothing to do. */
- if ( gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) )
- break;
-
- vcpu_altp2m(v).veinfo_gfn = INVALID_GFN;
- altp2m_vcpu_update_vmfunc_ve(v);
+ altp2m_vcpu_disable_ve(v);
break;
}
diff --git a/xen/arch/x86/mm/altp2m.c b/xen/arch/x86/mm/altp2m.c
index 930bdc2..8bdefb0 100644
--- a/xen/arch/x86/mm/altp2m.c
+++ b/xen/arch/x86/mm/altp2m.c
@@ -21,22 +21,13 @@
#include <asm/altp2m.h>
void
-altp2m_vcpu_reset(struct vcpu *v)
-{
- struct altp2mvcpu *av = &vcpu_altp2m(v);
-
- av->p2midx = INVALID_ALTP2M;
- av->veinfo_gfn = INVALID_GFN;
-}
-
-void
altp2m_vcpu_initialise(struct vcpu *v)
{
if ( v != current )
vcpu_pause(v);
- altp2m_vcpu_reset(v);
vcpu_altp2m(v).p2midx = 0;
+ vcpu_altp2m(v).veinfo_gfn = INVALID_GFN;
atomic_inc(&p2m_get_altp2m(v)->active_vcpus);
altp2m_vcpu_update_p2m(v);
@@ -56,15 +47,39 @@ altp2m_vcpu_destroy(struct vcpu *v)
if ( (p2m = p2m_get_altp2m(v)) )
atomic_dec(&p2m->active_vcpus);
- altp2m_vcpu_reset(v);
+ altp2m_vcpu_disable_ve(v);
+ vcpu_altp2m(v).p2midx = INVALID_ALTP2M;
altp2m_vcpu_update_p2m(v);
- altp2m_vcpu_update_vmfunc_ve(v);
if ( v != current )
vcpu_unpause(v);
}
+int altp2m_vcpu_enable_ve(struct vcpu *v, gfn_t gfn)
+{
+ p2m_type_t p2mt;
+
+ if ( !gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) ||
+ mfn_eq(get_gfn_query_unlocked(v->domain, gfn_x(gfn), &p2mt),
+ INVALID_MFN) )
+ return -EINVAL;
+
+ vcpu_altp2m(v).veinfo_gfn = gfn;
+ altp2m_vcpu_update_vmfunc_ve(v);
+
+ return 0;
+}
+
+void altp2m_vcpu_disable_ve(struct vcpu *v)
+{
+ if ( !gfn_eq(vcpu_altp2m(v).veinfo_gfn, INVALID_GFN) )
+ {
+ vcpu_altp2m(v).veinfo_gfn = INVALID_GFN;
+ altp2m_vcpu_update_vmfunc_ve(v);
+ }
+}
+
/*
* Local variables:
* mode: C
diff --git a/xen/include/asm-x86/altp2m.h b/xen/include/asm-x86/altp2m.h
index 3befcf6..8139bf8 100644
--- a/xen/include/asm-x86/altp2m.h
+++ b/xen/include/asm-x86/altp2m.h
@@ -33,7 +33,9 @@ static inline bool altp2m_active(const struct domain *d)
/* Alternate p2m VCPU */
void altp2m_vcpu_initialise(struct vcpu *v);
void altp2m_vcpu_destroy(struct vcpu *v);
-void altp2m_vcpu_reset(struct vcpu *v);
+
+int altp2m_vcpu_enable_ve(struct vcpu *v, gfn_t gfn);
+void altp2m_vcpu_disable_ve(struct vcpu *v);
static inline uint16_t altp2m_vcpu_idx(const struct vcpu *v)
{
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/xen-devel
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |