qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2 1/1] qga: Add log to guest-fsfreeze-thaw command


From: Konstantin Kostiuk
Subject: Re: [PATCH v2 1/1] qga: Add log to guest-fsfreeze-thaw command
Date: Wed, 15 Jan 2025 15:32:39 +0200

ping

On Mon, Jan 6, 2025 at 11:37 AM Konstantin Kostiuk <kkostiuk@redhat.com> wrote:
ping

On Mon, Dec 16, 2024 at 5:47 PM Konstantin Kostiuk <kkostiuk@redhat.com> wrote:
Signed-off-by: Konstantin Kostiuk <kkostiuk@redhat.com>
---
 qga/commands-posix.c | 2 ++
 qga/commands-win32.c | 3 +++
 2 files changed, 5 insertions(+)

diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index 636307bedf..359a56be81 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -805,8 +805,10 @@ int64_t qmp_guest_fsfreeze_thaw(Error **errp)
     int ret;

     ret = qmp_guest_fsfreeze_do_thaw(errp);
+
     if (ret >= 0) {
         ga_unset_frozen(ga_state);
+        slog("guest-fsthaw called");
         execute_fsfreeze_hook(FSFREEZE_HOOK_THAW, errp);
     } else {
         ret = 0;
diff --git a/qga/commands-win32.c b/qga/commands-win32.c
index 038beb8cfa..7d8e260e1f 100644
--- a/qga/commands-win32.c
+++ b/qga/commands-win32.c
@@ -1273,6 +1273,9 @@ int64_t qmp_guest_fsfreeze_thaw(Error **errp)
     qga_vss_fsfreeze(&i, false, NULL, errp);

     ga_unset_frozen(ga_state);
+
+    slog("guest-fsthaw called");
+
     return i;
 }

--
2.47.1



reply via email to

[Prev in Thread] Current Thread [Next in Thread]