From 7954c73498b7e782ba5db2993637daef456b6310 Mon Sep 17 00:00:00 2001 From: bellard Date: Tue, 1 Aug 2006 15:52:40 +0000 Subject: [PATCH] commit to specific devices git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2074 c046a42c-6fe2-441c-8c8c-71466251a162 --- monitor.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/monitor.c b/monitor.c index 09a0299fc7..b48e8cc702 100644 --- a/monitor.c +++ b/monitor.c @@ -167,13 +167,16 @@ static void do_help(const char *name) 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(bdrv_get_device_name(bs_table[i]), device)) + bdrv_commit(bs_table[i]); } } } @@ -1138,8 +1141,8 @@ static void do_wav_capture (const char *path, 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) or backing files" }, { "info", "s?", do_info, "subcommand", "show various information about the system state" }, { "q|quit", "", do_quit,