[Qemu-devel] [Resend][PATCH] qga: unset frozen state if no mount points are frozen

Chen Hanxiao posted 1 patch 6 years, 2 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180209013542.24516-1-chen_han_xiao@126.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test ppcbe passed
Test ppcle passed
Test s390x passed
There is a newer version of this series
qga/commands-posix.c | 6 ++++++
1 file changed, 6 insertions(+)
[Qemu-devel] [Resend][PATCH] qga: unset frozen state if no mount points are frozen
Posted by Chen Hanxiao 6 years, 2 months ago
From: Chen Hanxiao <chenhanxiao@gmail.com>

If we set mountpoints to qmp_guest_fsfreeze_freeze_list,
we may got nothing to freeze as all mountpoints are
not valid.
Call ga_unset_frozen in this senario.

Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
---
Rebase on master

 qga/commands-posix.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/qga/commands-posix.c b/qga/commands-posix.c
index e809e382eb..9fd51f1d7a 100644
--- a/qga/commands-posix.c
+++ b/qga/commands-posix.c
@@ -1273,6 +1273,12 @@ int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints,
     }
 
     free_fs_mount_list(&mounts);
+    /* We may not issue any FIFREEZE here when had mountpoints.
+     * Just unset ga_state here and ready for the next call.
+     */
+    if (has_mountpoints && i == 0) {
+        ga_unset_frozen(ga_state);
+    }
     return i;
 
 error:
-- 
2.14.3


Re: [Qemu-devel] [Resend][PATCH] qga: unset frozen state if no mount points are frozen
Posted by Michael Roth 6 years, 2 months ago
Quoting Chen Hanxiao (2018-02-08 19:35:42)
> From: Chen Hanxiao <chenhanxiao@gmail.com>
> 
> If we set mountpoints to qmp_guest_fsfreeze_freeze_list,
> we may got nothing to freeze as all mountpoints are
> not valid.
> Call ga_unset_frozen in this senario.
> 
> Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
> Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
> ---
> Rebase on master
> 
>  qga/commands-posix.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/qga/commands-posix.c b/qga/commands-posix.c
> index e809e382eb..9fd51f1d7a 100644
> --- a/qga/commands-posix.c
> +++ b/qga/commands-posix.c
> @@ -1273,6 +1273,12 @@ int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints,
>      }
> 
>      free_fs_mount_list(&mounts);
> +    /* We may not issue any FIFREEZE here when had mountpoints.
> +     * Just unset ga_state here and ready for the next call.
> +     */
> +    if (has_mountpoints && i == 0) {
> +        ga_unset_frozen(ga_state);
> +    }

It seems odd to special-case has_mountpoints. Wouldn't:

  if (i == 0) {
    ...
  }

be more consistent? Then management could infer i==0 leaves qga in
unfrozen state. Otherwise I'd rather just stick with expecting a
gratuitous unfreeze() since it requires less special-casing on the
management/ side.

And if we do change this, we'd probably want to update
qga/qapi-schema.json to reflect the behavior. I.e.:

##
# @guest-fsfreeze-freeze:
#
# Sync and freeze all freezable, local guest filesystems. If this
# command succeeded, you may call @guest-fsfreeze-thaw later to
# unfreeze.
...
# Returns: Number of file systems currently frozen. On error, all filesystems
-# will be thawed.
+# will be thawed. If no filesystems are frozen as a result of this call,
+# then @guest-fsfreeze-status will remain "thawed" and calling
+# @guest-fsfreeze-thaw is not necessary.


>      return i;
> 
>  error:
> -- 
> 2.14.3
> 


Re: [Qemu-devel] [Resend][PATCH] qga: unset frozen state if no mount points are frozen
Posted by Chen Hanxiao 6 years, 1 month ago
At 2018-02-16 02:41:25, "Michael Roth" <mdroth@linux.vnet.ibm.com> wrote:
>Quoting Chen Hanxiao (2018-02-08 19:35:42)
>> From: Chen Hanxiao <chenhanxiao@gmail.com>
>> 
>> If we set mountpoints to qmp_guest_fsfreeze_freeze_list,
>> we may got nothing to freeze as all mountpoints are
>> not valid.
>> Call ga_unset_frozen in this senario.
>> 
>> Cc: Michael Roth <mdroth@linux.vnet.ibm.com>
>> Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
>> ---
>> Rebase on master
>> 
>>  qga/commands-posix.c | 6 ++++++
>>  1 file changed, 6 insertions(+)
>> 
>> diff --git a/qga/commands-posix.c b/qga/commands-posix.c
>> index e809e382eb..9fd51f1d7a 100644
>> --- a/qga/commands-posix.c
>> +++ b/qga/commands-posix.c
>> @@ -1273,6 +1273,12 @@ int64_t qmp_guest_fsfreeze_freeze_list(bool has_mountpoints,
>>      }
>> 
>>      free_fs_mount_list(&mounts);
>> +    /* We may not issue any FIFREEZE here when had mountpoints.
>> +     * Just unset ga_state here and ready for the next call.
>> +     */
>> +    if (has_mountpoints && i == 0) {
>> +        ga_unset_frozen(ga_state);
>> +    }
>
>It seems odd to special-case has_mountpoints. Wouldn't:
>
>  if (i == 0) {
>    ...
>  }
>
>be more consistent? Then management could infer i==0 leaves qga in
>unfrozen state. Otherwise I'd rather just stick with expecting a
>gratuitous unfreeze() since it requires less special-casing on the
>management/ side.
>
>And if we do change this, we'd probably want to update
>qga/qapi-schema.json to reflect the behavior. I.e.:
>
>##
># @guest-fsfreeze-freeze:
>#
># Sync and freeze all freezable, local guest filesystems. If this
># command succeeded, you may call @guest-fsfreeze-thaw later to
># unfreeze.
>...
># Returns: Number of file systems currently frozen. On error, all filesystems
>-# will be thawed.
>+# will be thawed. If no filesystems are frozen as a result of this call,
>+# then @guest-fsfreeze-status will remain "thawed" and calling
>+# @guest-fsfreeze-thaw is not necessary.
>

Thanks for the review.
Will be fixed in v2.

Regards,
- Chen