diff options
author | Tomoki Sekiyama | 2014-06-30 23:51:27 +0200 |
---|---|---|
committer | Michael Roth | 2014-08-08 00:13:10 +0200 |
commit | e99bce2021d2fd41a4d02f5e7e83734b03ff2b6f (patch) | |
tree | a3c6fc8d072ef3d9b62858e289049074ee3ac56a /qga/commands-win32.c | |
parent | Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (diff) | |
download | qemu-e99bce2021d2fd41a4d02f5e7e83734b03ff2b6f.tar.gz qemu-e99bce2021d2fd41a4d02f5e7e83734b03ff2b6f.tar.xz qemu-e99bce2021d2fd41a4d02f5e7e83734b03ff2b6f.zip |
qga: Add guest-fsfreeze-freeze-list command
If an array of mount point paths is specified as 'mountpoints' argument
of guest-fsfreeze-freeze-list, qemu-ga will only freeze the file systems
mounted on specified paths in Linux guests. Otherwise, it works as the
same way as guest-fsfreeze-freeze.
This would be useful when the host wants to create partial disk snapshots.
Signed-off-by: Tomoki Sekiyama <tomoki.sekiyama@hds.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
*updated schema to report 2.2 as initial supported version
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/commands-win32.c')
-rw-r--r-- | qga/commands-win32.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qga/commands-win32.c b/qga/commands-win32.c index e76939651a..94877e9326 100644 --- a/qga/commands-win32.c +++ b/qga/commands-win32.c @@ -206,6 +206,15 @@ error: return 0; } +int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints, + strList *mountpoints, + Error **errp) +{ + error_set(errp, QERR_UNSUPPORTED); + + return 0; +} + /* * Thaw local file systems using Volume Shadow-copy Service. */ |