[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL for-6.1 1/6] qga-win: Increase VSS freeze timeout to 60 secs inste
|
From: |
Michael Roth |
|
Subject: |
[PULL for-6.1 1/6] qga-win: Increase VSS freeze timeout to 60 secs instead of 10 |
|
Date: |
Tue, 3 Aug 2021 08:24:47 -0500 |
From: Basil Salman <basil@daynix.com>
Currently Requester freeze times out after 10 seconds, while
the default timeout for Writer Freeze is 60 seconds. according to
VSS Documentation [1].
[1]:
https://docs.microsoft.com/en-us/windows/win32/vss/overview-of-processing-a-backup-under-vss
Buglink: https://bugzilla.redhat.com/show_bug.cgi?id=1909073
Signed-off-by: Basil Salman <bsalman@daynix.com>
Signed-off-by: Basil Salman <basil@daynix.com>
Signed-off-by: Michael Roth <michael.roth@amd.com>
---
qga/vss-win32/requester.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qga/vss-win32/requester.cpp b/qga/vss-win32/requester.cpp
index 5378c55d23..940a2c8f55 100644
--- a/qga/vss-win32/requester.cpp
+++ b/qga/vss-win32/requester.cpp
@@ -18,7 +18,7 @@
#include <inc/win2003/vsbackup.h>
/* Max wait time for frozen event (VSS can only hold writes for 10 seconds) */
-#define VSS_TIMEOUT_FREEZE_MSEC 10000
+#define VSS_TIMEOUT_FREEZE_MSEC 60000
/* Call QueryStatus every 10 ms while waiting for frozen event */
#define VSS_TIMEOUT_EVENT_MSEC 10
--
2.25.1
- [PULL for-6.1 0/6] qemu-ga patch queue for hard-freeze, Michael Roth, 2021/08/03
- [PULL for-6.1 2/6] qga-win: Fix build_guest_fsinfo() close of nonexistent, Michael Roth, 2021/08/03
- [PULL for-6.1 1/6] qga-win: Increase VSS freeze timeout to 60 secs instead of 10,
Michael Roth <=
- [PULL for-6.1 4/6] qga-win: Free GMatchInfo properly, Michael Roth, 2021/08/03
- [PULL for-6.1 3/6] qga-win: Fix handle leak in ga_get_win_product_name(), Michael Roth, 2021/08/03
- [PULL for-6.1 5/6] qemu-ga/msi: fix w32 libgcc name, Michael Roth, 2021/08/03
- [PULL for-6.1 6/6] qga-win/msi: fix missing libstdc++-6 DLL in MSI installer, Michael Roth, 2021/08/03
- Re: [PULL for-6.1 0/6] qemu-ga patch queue for hard-freeze, Peter Maydell, 2021/08/03