qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5258] Add "info uuid" command to monitor (Gleb Natapov)


From: Blue Swirl
Subject: [Qemu-devel] [5258] Add "info uuid" command to monitor (Gleb Natapov)
Date: Thu, 18 Sep 2008 18:30:21 +0000

Revision: 5258
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5258
Author:   blueswir1
Date:     2008-09-18 18:30:20 +0000 (Thu, 18 Sep 2008)

Log Message:
-----------
Add "info uuid" command to monitor (Gleb Natapov)

Modified Paths:
--------------
    trunk/monitor.c

Modified: trunk/monitor.c
===================================================================
--- trunk/monitor.c     2008-09-18 18:29:08 UTC (rev 5257)
+++ trunk/monitor.c     2008-09-18 18:30:20 UTC (rev 5258)
@@ -249,6 +249,15 @@
         term_printf("%s\n", qemu_name);
 }
 
+static void do_info_uuid(void)
+{
+    term_printf(UUID_FMT "\n", qemu_uuid[0], qemu_uuid[1], qemu_uuid[2],
+            qemu_uuid[3], qemu_uuid[4], qemu_uuid[5], qemu_uuid[6],
+            qemu_uuid[7], qemu_uuid[8], qemu_uuid[9], qemu_uuid[10],
+            qemu_uuid[11], qemu_uuid[12], qemu_uuid[13], qemu_uuid[14],
+            qemu_uuid[15]);
+}
+
 static void do_info_block(void)
 {
     bdrv_info();
@@ -1497,6 +1506,8 @@
       "", "show the vnc server status"},
     { "name", "", do_info_name,
       "", "show the current VM name" },
+    { "uuid", "", do_info_uuid,
+      "", "show the current VM UUID" },
 #if defined(TARGET_PPC)
     { "cpustats", "", do_info_cpu_stats,
       "", "show CPU statistics", },






reply via email to

[Prev in Thread] Current Thread [Next in Thread]