[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v2 4/8] qga-win: Fix Event Viewer errors caused by qe
From: |
Michael Roth |
Subject: |
[Qemu-devel] [PULL v2 4/8] qga-win: Fix Event Viewer errors caused by qemu-ga |
Date: |
Thu, 27 Apr 2017 00:46:32 -0500 |
From: Sameeh Jubran <address@hidden>
When the command "guest-fsfreeze-freeze" is executed it causes
the VSS service to log the error below in the Event Viewer. This
error is caused by an issue in the function "CommitSnapshots" in
provider.cpp:
* When VSS_TIMEOUT_MSEC expires the funtion returns E_ABORT. This causes
the error #12293.
|event id| error |
* 12293 : Volume Shadow Copy Service error: Error calling a routine on a
Shadow Copy Provider {00000000-0000-0000-0000-000000000000}.
Routine details CommitSnapshots [hr = 0x80004004, Operation
aborted.
Signed-off-by: Sameeh Jubran <address@hidden>
Signed-off-by: Michael Roth <address@hidden>
---
qga/vss-win32/provider.cpp | 1 -
1 file changed, 1 deletion(-)
diff --git a/qga/vss-win32/provider.cpp b/qga/vss-win32/provider.cpp
index ef94669..72d8b0e 100644
--- a/qga/vss-win32/provider.cpp
+++ b/qga/vss-win32/provider.cpp
@@ -377,7 +377,6 @@ STDMETHODIMP CQGAVssProvider::CommitSnapshots(VSS_ID
SnapshotSetId)
if (WaitForSingleObject(hEventThaw, VSS_TIMEOUT_MSEC) != WAIT_OBJECT_0) {
/* Send event to qemu-ga to notify the provider is timed out */
SetEvent(hEventTimeout);
- hr = E_ABORT;
}
CloseHandle(hEventThaw);
--
2.7.4
- [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 2/8] qga-win: Enable 'can-offline' field in 'guest-get-vcpus' reply, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 3/8] qga-win: Fix a bug where qemu-ga service is stuck during stop operation, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 7/8] qga: Add 'guest-get-users' command, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 6/8] qga: improve fsfreeze documentations, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 4/8] qga-win: Fix Event Viewer errors caused by qemu-ga,
Michael Roth <=
- [Qemu-devel] [PULL v2 5/8] qga: Add 'guest-get-host-name' command, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 1/8] qemu-ga: Make QGA VSS provider service run only when needed, Michael Roth, 2017/04/27
- [Qemu-devel] [PULL v2 8/8] qga: Add `guest-get-timezone` command, Michael Roth, 2017/04/27
- Re: [Qemu-devel] [PULL v2 0/8] qemu-ga patch queue, Stefan Hajnoczi, 2017/04/28