* [Qemu-devel] [PATCH] Fix DEBUG_* compilation of qcow2.
@ 2011-08-04 17:22 Philipp Hahn
2011-08-05 11:50 ` Kevin Wolf
0 siblings, 1 reply; 2+ messages in thread
From: Philipp Hahn @ 2011-08-04 17:22 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 434 bytes --]
By introducing BlockDriverState compiling qcow2 with DEBUG_ALLOC and DEBUG_EXT
defined got broken.
Define a BdrvCheckResult structure locally which is now needed as the second
argument.
Also fix qcow2_read_extensions() needing BDRVQcowState.
Signed-off-by: Philipp Hahn <hahn@univention.de>
---
block/qcow2-snapshot.c | 15 ++++++++++++---
block/qcow2.c | 6 +++++-
2 files changed, 17 insertions(+), 4 deletions(-)
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-DEBUG_-compilation-of-qcow2.patch --]
[-- Type: text/x-patch; name="0001-Fix-DEBUG_-compilation-of-qcow2.patch", Size: 1850 bytes --]
diff --git a/block/qcow2-snapshot.c b/block/qcow2-snapshot.c
index 74823a5..a6c0861 100644
--- a/block/qcow2-snapshot.c
+++ b/block/qcow2-snapshot.c
@@ -303,7 +303,10 @@ int qcow2_snapshot_create(BlockDriverState *bs, QEMUSnapshotInfo *sn_info)
if (qcow2_write_snapshots(bs) < 0)
goto fail;
#ifdef DEBUG_ALLOC
- qcow2_check_refcounts(bs);
+ {
+ BdrvCheckResult result = {0};
+ qcow2_check_refcounts(bs, &result);
+ }
#endif
return 0;
fail:
@@ -347,7 +350,10 @@ int qcow2_snapshot_goto(BlockDriverState *bs, const char *snapshot_id)
goto fail;
#ifdef DEBUG_ALLOC
- qcow2_check_refcounts(bs);
+ {
+ BdrvCheckResult result = {0};
+ qcow2_check_refcounts(bs, &result);
+ }
#endif
return 0;
fail:
@@ -384,7 +390,10 @@ int qcow2_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
return ret;
}
#ifdef DEBUG_ALLOC
- qcow2_check_refcounts(bs);
+ {
+ BdrvCheckResult result = {0};
+ qcow2_check_refcounts(bs, &result);
+ }
#endif
return 0;
}
diff --git a/block/qcow2.c b/block/qcow2.c
index 48e1b95..a42ece9 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -87,6 +87,7 @@ static int qcow2_read_extensions(BlockDriverState *bs, uint64_t start_offset,
while (offset < end_offset) {
#ifdef DEBUG_EXT
+ BDRVQcowState *s = bs->opaque;
/* Sanity check */
if (offset > s->cluster_size)
printf("qcow2_read_extension: suspicious offset %lu\n", offset);
@@ -277,7 +278,10 @@ static int qcow2_open(BlockDriverState *bs, int flags)
}
#ifdef DEBUG_ALLOC
- qcow2_check_refcounts(bs);
+ {
+ BdrvCheckResult result = {0};
+ qcow2_check_refcounts(bs, &result);
+ }
#endif
return ret;
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix DEBUG_* compilation of qcow2.
2011-08-04 17:22 [Qemu-devel] [PATCH] Fix DEBUG_* compilation of qcow2 Philipp Hahn
@ 2011-08-05 11:50 ` Kevin Wolf
0 siblings, 0 replies; 2+ messages in thread
From: Kevin Wolf @ 2011-08-05 11:50 UTC (permalink / raw)
To: Philipp Hahn; +Cc: qemu-devel
Am 04.08.2011 19:22, schrieb Philipp Hahn:
> By introducing BlockDriverState compiling qcow2 with DEBUG_ALLOC and DEBUG_EXT
> defined got broken.
> Define a BdrvCheckResult structure locally which is now needed as the second
> argument.
>
> Also fix qcow2_read_extensions() needing BDRVQcowState.
>
> Signed-off-by: Philipp Hahn <hahn@univention.de>
> ---
> block/qcow2-snapshot.c | 15 ++++++++++++---
> block/qcow2.c | 6 +++++-
> 2 files changed, 17 insertions(+), 4 deletions(-)
>
Thanks, applied to the block branch.
Kevin
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-08-05 11:47 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 17:22 [Qemu-devel] [PATCH] Fix DEBUG_* compilation of qcow2 Philipp Hahn
2011-08-05 11:50 ` 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).