* [Qemu-devel] [PATCH] specify device_name for commit
@ 2006-07-28 21:33 maestro
0 siblings, 0 replies; only message in thread
From: maestro @ 2006-07-28 21:33 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 183 bytes --]
Hello all!
With this patch only the specified device gets commited.
Since this is my first attempt to send a patch to the list, please let
me know what you think of it.
cheers
m.
[-- Attachment #2: commit_device.patch --]
[-- Type: text/x-patch, Size: 1343 bytes --]
Index: monitor.c
===================================================================
RCS file: /sources/qemu/qemu/monitor.c,v
retrieving revision 1.54
diff -u -r1.54 monitor.c
--- monitor.c 16 Jul 2006 18:57:03 -0000 1.54
+++ monitor.c 28 Jul 2006 21:32:45 -0000
@@ -24,6 +24,7 @@
#include "vl.h"
#include "disas.h"
#include <dirent.h>
+#include "block_int.h"
//#define DEBUG
//#define DEBUG_COMPLETION
@@ -167,13 +168,15 @@
help_cmd(name);
}
-static void do_commit(void)
+static void do_commit(const char *device)
{
- int i;
-
+ int i, all_devices;
+
+ all_devices = !strcmp(device, "all");
for (i = 0; i < MAX_DISKS; i++) {
if (bs_table[i]) {
- bdrv_commit(bs_table[i]);
+ if (all_devices || !strcmp(bs_table[i]->device_name, device))
+ bdrv_commit(bs_table[i]);
}
}
}
@@ -1138,8 +1141,8 @@
static term_cmd_t term_cmds[] = {
{ "help|?", "s?", do_help,
"[cmd]", "show the help" },
- { "commit", "", do_commit,
- "", "commit changes to the disk images (if -snapshot is used)" },
+ { "commit", "s", do_commit,
+ "device|all", "commit changes to the disk images (if -snapshot is used)" },
{ "info", "s?", do_info,
"subcommand", "show various information about the system state" },
{ "q|quit", "", do_quit,
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-28 21:33 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-28 21:33 [Qemu-devel] [PATCH] specify device_name for commit maestro
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).