qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH V12 07/18] block: change VM snapshot checking lo


From: Eric Blake
Subject: Re: [Qemu-devel] [PATCH V12 07/18] block: change VM snapshot checking logic
Date: Wed, 17 Apr 2013 15:58:24 -0600
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130402 Thunderbird/17.0.5

On 04/13/2013 02:56 AM, Wenchao Xia wrote:
>   Original logic is different with load_vmstate(), this patch change it

s/with/from/
s/change/changes/

> to be exactly the same with load_vmstate(), so any VM snapshot shown in

s/with/as/

> qmp/hmp should succeed in load_vmstate().

Looking through git logs, most people use blank lines and start at
column 1, rather than your idiom of 2-space indent and no blank line,
when starting a new paragraph.

>   Note that, runtime snapshot info maybe different with what is got

s/that,/that consistent/
s/maybe different with/may be a subset of/
s/got/listed/

> in "qemu-img info" as static snapshot info, and this patch clearly
> tips it.

s/tips/identifies/

> 
> Signed-off-by: Wenchao Xia <address@hidden>
> ---
>  block/qapi.c |   13 ++++++++++++-
>  1 files changed, 12 insertions(+), 1 deletions(-)

Reviewed-by: Eric Blake <address@hidden>

> 
> diff --git a/block/qapi.c b/block/qapi.c
> index 97c5cd4..49c0eb0 100644
> --- a/block/qapi.c
> +++ b/block/qapi.c
> @@ -46,7 +46,18 @@ static bool snapshot_valid_for_vm(const QEMUSnapshotInfo 
> *sn,
>         take snapshot, for example, readonly ones, will be ignored in
>         load_vmstate(). */
>      while ((bs1 = bdrv_next(bs1))) {
> -        if (bs1 != bs && bdrv_can_snapshot(bs1)) {
> +

A blank line after a while(){ is not common, but as it is only
whitespace, and checkpatch didn't complain, it doesn't hold up my review.

> +        if (!bdrv_is_inserted(bs1) || bdrv_is_read_only(bs1)) {
> +            continue;
> +        }
> +
> +        if (!bdrv_can_snapshot(bs1)) {
> +            /* Device is writable but does not support snapshots, will be
> +               rejected by load_vmstate(). */
> +            return false;
> +        }
> +
> +        if (bs1 != bs) {
>              ret = bdrv_snapshot_find(bs1, sn_info, sn->id_str, NULL);
>              if (ret < 0) {
>                  return false;
> 

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org

Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

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