From: Avi Kivity <a...@redhat.com>

This reverts commit c3fe515c911b9828d6e3e659ac794cb7dc76cd66; needs to go
through qemu.git.

Signed-off-by: Avi Kivity <a...@redhat.com>

diff --git a/monitor.c b/monitor.c
index df0cb33..9072c06 100644
--- a/monitor.c
+++ b/monitor.c
@@ -2301,18 +2301,6 @@ static void do_inject_mce(Monitor *mon, const QDict 
*qdict)
 }
 #endif
 
-static void do_p2v(Monitor *mon, const QDict *qdict)
-{
-    target_phys_addr_t size = TARGET_PAGE_SIZE;
-    target_phys_addr_t addr = qdict_get_int(qdict, "addr");
-    void *vaddr;
-
-    vaddr = cpu_physical_memory_map(addr, &size, 0);
-    monitor_printf(mon, "Guest physical address %p is mapped at "
-                   "host virtual address %p\n", (void *)addr, vaddr);
-    cpu_physical_memory_unmap(vaddr, size, 0, 0);
-}
-
 static int do_getfd(Monitor *mon, const QDict *qdict, QObject **ret_data)
 {
     const char *fdname = qdict_get_str(qdict, "fdname");
diff --git a/qemu-monitor.hx b/qemu-monitor.hx
index 2698a42..620f937 100644
--- a/qemu-monitor.hx
+++ b/qemu-monitor.hx
@@ -459,19 +459,6 @@ Start gdbserver session (default @var{port}=1234)
 ETEXI
 
     {
-        .name       = "p2v",
-        .args_type  = "fmt:/,addr:l",
-        .params     = "/fmt addr",
-        .help       = "translate guest physical 'addr' to host virtual 
address",
-        .mhandler.cmd = do_p2v,
-    },
-STEXI
-...@item p2v @var{addr}
-...@findex mce
-Translate guest physical @var{addr} to host virtual address.
-ETEXI
-
-    {
         .name       = "x",
         .args_type  = "fmt:/,addr:l",
         .params     = "/fmt addr",
--
To unsubscribe from this list: send the line "unsubscribe kvm-commits" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to