summary refs log tree commit diff stats
path: root/qga/vss-win32/requester.cpp
diff options
context:
space:
mode:
authorKfir Manor <kfir@daynix.com>2023-02-09 10:50:04 +0200
committerKonstantin Kostiuk <kkostiuk@redhat.com>2023-03-08 18:26:50 +0200
commit0961f929c66ceb5e9e95756bfe418b9ef34510eb (patch)
treeee9b923d1fe36e18910e8b77be10c8282c3eda9d /qga/vss-win32/requester.cpp
parent410542d4a2d7c1d8136d3e49fc3ca29fbb76789a (diff)
downloadfocaccia-qemu-0961f929c66ceb5e9e95756bfe418b9ef34510eb.tar.gz
focaccia-qemu-0961f929c66ceb5e9e95756bfe418b9ef34510eb.zip
qga/win/vss: requester_freeze changes
Change requester_freeze so that the VSS backup type queried from the registry

Signed-off-by: Kfir Manor <kfir@daynix.com>
Reviewed-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
Diffstat (limited to 'qga/vss-win32/requester.cpp')
-rw-r--r--qga/vss-win32/requester.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qga/vss-win32/requester.cpp b/qga/vss-win32/requester.cpp
index e06d516675..3e998af4a8 100644
--- a/qga/vss-win32/requester.cpp
+++ b/qga/vss-win32/requester.cpp
@@ -285,6 +285,7 @@ void requester_freeze(int *num_vols, void *mountpoints, ErrorSet *errset)
     DWORD wait_status;
     int num_fixed_drives = 0, i;
     int num_mount_points = 0;
+    VSS_BACKUP_TYPE vss_bt = get_vss_backup_type();
 
     if (vss_ctx.pVssbc) { /* already frozen */
         *num_vols = 0;
@@ -332,7 +333,7 @@ void requester_freeze(int *num_vols, void *mountpoints, ErrorSet *errset)
         goto out;
     }
 
-    hr = vss_ctx.pVssbc->SetBackupState(true, true, VSS_BT_FULL, false);
+    hr = vss_ctx.pVssbc->SetBackupState(true, true, vss_bt, false);
     if (FAILED(hr)) {
         err_set(errset, hr, "failed to set backup state");
         goto out;