qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed
Date: Wed, 11 Jan 2012 14:38:50 +0000

On Sat, Dec 31, 2011 at 9:06 AM, Dong Xu Wang
<address@hidden> wrote:
> +static int bdrv_qed_is_dirty(BlockDriverState *bs)
> +{
> +    BDRVQEDState *s = bs->opaque;
> +    return s->header.features & QED_F_NEED_CHECK;
> +}

Looks good.

Note that the image will be checked and then QED_F_NEED_CHECK is
cleared when the image is opened for read/write.  So the flag is only
reported if the image was opened read-only, or if we're writing to the
image and it allocated new clusters recently.

Stefan



reply via email to

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