* [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img
@ 2011-12-31 9:06 Dong Xu Wang
2011-12-31 9:06 ` [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed Dong Xu Wang
2012-01-11 14:35 ` [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Stefan Hajnoczi
0 siblings, 2 replies; 5+ messages in thread
From: Dong Xu Wang @ 2011-12-31 9:06 UTC (permalink / raw)
To: qemu-devel; +Cc: Kevin Wolf, Dong Xu Wang, Stefan Hajnoczi
From: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Some block drivers can verify their image files are clean or not. So we can show
it while using "qemu-img info"
CC: Kevin Wolf <kwolf@redhat.com>
CC: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
---
Previous discussion can be found at:
http://patchwork.ozlabs.org/patch/128730/
block.c | 14 ++++++++++++++
block.h | 2 ++
block_int.h | 1 +
qemu-img.c | 3 +++
4 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/block.c b/block.c
index 3f072f6..24fd774 100644
--- a/block.c
+++ b/block.c
@@ -186,6 +186,20 @@ static void bdrv_io_limits_intercept(BlockDriverState *bs,
qemu_co_queue_next(&bs->throttled_reqs);
}
+/* check if the image is dirty */
+int bdrv_is_dirty(BlockDriverState *bs)
+{
+ BlockDriver *drv = bs->drv;
+
+ if (!drv) {
+ return 0;
+ }
+ if (!drv->bdrv_is_dirty) {
+ return 0;
+ }
+ return drv->bdrv_is_dirty(bs);
+}
+
/* check if the path starts with "<protocol>:" */
static int path_has_protocol(const char *path)
{
diff --git a/block.h b/block.h
index 3bd4398..e3f3b55 100644
--- a/block.h
+++ b/block.h
@@ -104,6 +104,8 @@ void bdrv_io_limits_enable(BlockDriverState *bs);
void bdrv_io_limits_disable(BlockDriverState *bs);
bool bdrv_io_limits_enabled(BlockDriverState *bs);
+int bdrv_is_dirty(BlockDriverState *bs);
+
void bdrv_init(void);
void bdrv_init_with_whitelist(void);
BlockDriver *bdrv_find_protocol(const char *filename);
diff --git a/block_int.h b/block_int.h
index 311bd2a..46afffb 100644
--- a/block_int.h
+++ b/block_int.h
@@ -84,6 +84,7 @@ struct BlockDriver {
int (*bdrv_create)(const char *filename, QEMUOptionParameter *options);
int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
int (*bdrv_make_empty)(BlockDriverState *bs);
+ int (*bdrv_is_dirty)(BlockDriverState *bs);
/* aio */
BlockDriverAIOCB *(*bdrv_aio_readv)(BlockDriverState *bs,
int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
diff --git a/qemu-img.c b/qemu-img.c
index 01cc0d3..a79c274 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -1153,6 +1153,9 @@ static int img_info(int argc, char **argv)
if (bdrv_is_encrypted(bs)) {
printf("encrypted: yes\n");
}
+ if (bdrv_is_dirty(bs)) {
+ printf("dirty,need check: yes\n");
+ }
if (bdrv_get_info(bs, &bdi) >= 0) {
if (bdi.cluster_size != 0) {
printf("cluster_size: %d\n", bdi.cluster_size);
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed
2011-12-31 9:06 [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Dong Xu Wang
@ 2011-12-31 9:06 ` Dong Xu Wang
2012-01-11 14:38 ` Stefan Hajnoczi
2012-01-11 14:35 ` [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Stefan Hajnoczi
1 sibling, 1 reply; 5+ messages in thread
From: Dong Xu Wang @ 2011-12-31 9:06 UTC (permalink / raw)
To: qemu-devel; +Cc: Kevin Wolf, Dong Xu Wang, Stefan Hajnoczi
From: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
qed driver use QED_F_NEED_CHECK to mark if the image is clean.
CC: Kevin Wolf <kwolf@redhat.com>
CC: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
---
block/qed.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/block/qed.c b/block/qed.c
index 8da3ebe..1e909b1 100644
--- a/block/qed.c
+++ b/block/qed.c
@@ -1429,6 +1429,12 @@ static int bdrv_qed_check(BlockDriverState *bs, BdrvCheckResult *result)
return qed_check(s, result, false);
}
+static int bdrv_qed_is_dirty(BlockDriverState *bs)
+{
+ BDRVQEDState *s = bs->opaque;
+ return s->header.features & QED_F_NEED_CHECK;
+}
+
static QEMUOptionParameter qed_create_options[] = {
{
.name = BLOCK_OPT_SIZE,
@@ -1474,6 +1480,7 @@ static BlockDriver bdrv_qed = {
.bdrv_get_info = bdrv_qed_get_info,
.bdrv_change_backing_file = bdrv_qed_change_backing_file,
.bdrv_check = bdrv_qed_check,
+ .bdrv_is_dirty = bdrv_qed_is_dirty,
};
static void bdrv_qed_init(void)
--
1.7.5.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img
2011-12-31 9:06 [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Dong Xu Wang
2011-12-31 9:06 ` [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed Dong Xu Wang
@ 2012-01-11 14:35 ` Stefan Hajnoczi
2012-01-11 14:47 ` Kevin Wolf
1 sibling, 1 reply; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-01-11 14:35 UTC (permalink / raw)
To: Dong Xu Wang; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi
On Sat, Dec 31, 2011 at 9:06 AM, Dong Xu Wang
<wdongxu@linux.vnet.ibm.com> wrote:
> +int bdrv_is_dirty(BlockDriverState *bs)
bool would be nicer instead of int. Traditionally we used int but C99
has been around for a long time now and it's more appropriate.
> diff --git a/qemu-img.c b/qemu-img.c
> index 01cc0d3..a79c274 100644
> --- a/qemu-img.c
> +++ b/qemu-img.c
> @@ -1153,6 +1153,9 @@ static int img_info(int argc, char **argv)
> if (bdrv_is_encrypted(bs)) {
> printf("encrypted: yes\n");
> }
> + if (bdrv_is_dirty(bs)) {
> + printf("dirty,need check: yes\n");
> + }
I suggest avoiding the comma and just saying "needs check: yes\n".
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed
2011-12-31 9:06 ` [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed Dong Xu Wang
@ 2012-01-11 14:38 ` Stefan Hajnoczi
0 siblings, 0 replies; 5+ messages in thread
From: Stefan Hajnoczi @ 2012-01-11 14:38 UTC (permalink / raw)
To: Dong Xu Wang; +Cc: Kevin Wolf, qemu-devel, Stefan Hajnoczi
On Sat, Dec 31, 2011 at 9:06 AM, Dong Xu Wang
<wdongxu@linux.vnet.ibm.com> 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
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img
2012-01-11 14:35 ` [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Stefan Hajnoczi
@ 2012-01-11 14:47 ` Kevin Wolf
0 siblings, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2012-01-11 14:47 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: Dong Xu Wang, qemu-devel, Stefan Hajnoczi
Am 11.01.2012 15:35, schrieb Stefan Hajnoczi:
> On Sat, Dec 31, 2011 at 9:06 AM, Dong Xu Wang
> <wdongxu@linux.vnet.ibm.com> wrote:
>> +int bdrv_is_dirty(BlockDriverState *bs)
>
> bool would be nicer instead of int. Traditionally we used int but C99
> has been around for a long time now and it's more appropriate.
>
>> diff --git a/qemu-img.c b/qemu-img.c
>> index 01cc0d3..a79c274 100644
>> --- a/qemu-img.c
>> +++ b/qemu-img.c
>> @@ -1153,6 +1153,9 @@ static int img_info(int argc, char **argv)
>> if (bdrv_is_encrypted(bs)) {
>> printf("encrypted: yes\n");
>> }
>> + if (bdrv_is_dirty(bs)) {
>> + printf("dirty,need check: yes\n");
>> + }
>
> I suggest avoiding the comma and just saying "needs check: yes\n".
In fact I would reverse the logic and make it something like "cleanly
shut down: no", it will better describe the situation when the VM is
still running. Same for the function names, "dirty" could mean anything.
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-01-11 14:44 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-31 9:06 [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Dong Xu Wang
2011-12-31 9:06 ` [Qemu-devel] [PATCH 2/2] block: track dirty flag status in qed Dong Xu Wang
2012-01-11 14:38 ` Stefan Hajnoczi
2012-01-11 14:35 ` [Qemu-devel] [PATCH 1/2] block: add dirty flag status to qemu-img Stefan Hajnoczi
2012-01-11 14:47 ` Kevin Wolf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).