aboutsummaryrefslogtreecommitdiffstats
path: root/tools/libxc/xenctrl.h
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/xenctrl.h
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/xenctrl.h')
-rw-r--r--tools/libxc/xenctrl.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/libxc/xenctrl.h b/tools/libxc/xenctrl.h
index 0f45b7961b..1e149c13c0 100644
--- a/tools/libxc/xenctrl.h
+++ b/tools/libxc/xenctrl.h
@@ -718,9 +718,7 @@ int xc_domain_setdebugging(xc_interface *xch,
* @parm xch a handle to an open hypervisor interface
* @parm domid the domain id whose top level p2m we
* want to audit
- * @parm orphans_debug count of m2p entries for valid
- * domain pages containing a debug value
- * @parm orphans_invalid count of m2p entries for valid
+ * @parm orphans count of m2p entries for valid
* domain pages containing an invalid value
* @parm m2p_bad count of m2p entries mismatching the
* associated p2m entry for this domain
@@ -732,9 +730,8 @@ int xc_domain_setdebugging(xc_interface *xch,
* -EFAULT: could not copy results back to guest
*/
int xc_domain_p2m_audit(xc_interface *xch,
- uint32_t domid,
- uint64_t *orphans_debug,
- uint64_t *orphans_invalid,
+ uint32_t domid,
+ uint64_t *orphans,
uint64_t *m2p_bad,
uint64_t *p2m_bad);