qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5258] Add "info uuid" command to monitor (Gleb Natapov)
@ 2008-09-18 18:30 Blue Swirl
  0 siblings, 0 replies; only message in thread
From: Blue Swirl @ 2008-09-18 18:30 UTC (permalink / raw)
  To: qemu-devel

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", },

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-09-18 18:30 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-18 18:30 [Qemu-devel] [5258] Add "info uuid" command to monitor (Gleb Natapov) Blue Swirl

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).