aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xc_domain.c
diff options
context:
space:
mode:
authorTim Deegan <tim@xen.org>2011-12-02 06:07:52 -0800
committerTim Deegan <tim@xen.org>2011-12-02 06:07:52 -0800
commitb010d7f5b8b9ab1f95e59bc8d4f0a290a1f1a21b (patch)
treecfc77ec26225cd2b286945c81b852ebd670df5c9 /tools/libxc/xc_domain.c
parentdf32a79d0ea388e76dfece4035d62e8a4947a17a (diff)
downloadxen-b010d7f5b8b9ab1f95e59bc8d4f0a290a1f1a21b.tar.gz
xen-b010d7f5b8b9ab1f95e59bc8d4f0a290a1f1a21b.tar.bz2
xen-b010d7f5b8b9ab1f95e59bc8d4f0a290a1f1a21b.zip
x86/mm: remove 0x55 debug pattern from M2P table
It's not really any more useful than explicitly setting new M2P entries to the invalid value. Signed-off-by: Tim Deegan <tim@xen.org> Committed-by: Keir Fraser <keir@xen.org>
Diffstat (limited to 'tools/libxc/xc_domain.c')
-rw-r--r--tools/libxc/xc_domain.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c
index 306b2122bc..ab019b8bb1 100644
--- a/tools/libxc/xc_domain.c
+++ b/tools/libxc/xc_domain.c
@@ -1474,8 +1474,7 @@ int xc_domain_debug_control(xc_interface *xc, uint32_t domid, uint32_t sop, uint
int xc_domain_p2m_audit(xc_interface *xch,
uint32_t domid,
- uint64_t *orphans_debug,
- uint64_t *orphans_invalid,
+ uint64_t *orphans,
uint64_t *m2p_bad,
uint64_t *p2m_bad)
{
@@ -1486,10 +1485,9 @@ int xc_domain_p2m_audit(xc_interface *xch,
domctl.domain = domid;
rc = do_domctl(xch, &domctl);
- *orphans_debug = domctl.u.audit_p2m.orphans_debug;
- *orphans_invalid = domctl.u.audit_p2m.orphans_invalid;
- *m2p_bad = domctl.u.audit_p2m.m2p_bad;
- *p2m_bad = domctl.u.audit_p2m.p2m_bad;
+ *orphans = domctl.u.audit_p2m.orphans;
+ *m2p_bad = domctl.u.audit_p2m.m2p_bad;
+ *p2m_bad = domctl.u.audit_p2m.p2m_bad;
return rc;
}