qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v4 2/3] qcow2: Use QcowCache


From: Avi Kivity
Subject: Re: [Qemu-devel] [PATCH v4 2/3] qcow2: Use QcowCache
Date: Wed, 09 Feb 2011 13:19:35 +0200
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Lightning/1.0b3pre Thunderbird/3.1.7

On 01/20/2011 07:10 PM, Kevin Wolf wrote:
Use the new functions of qcow2-cache.c for everything that works on refcount
block and L2 tables.


While autotesting qemu-kvm's stable-0.14 branch, this commit causes failures. The scenario is:

- install OS
- reboot
- hang at GRUB prompt
- qemu-img reports hundreds of leaked clusters

The actual commit I am testing is in qemu-kvm.git qcow2-qcowcache-failure (tag). The test runs with -drive ,cache=unsafe.

@@ -719,7 +727,13 @@ static void qcow2_close(BlockDriverState *bs)
  {
      BDRVQcowState *s = bs->opaque;
      qemu_free(s->l1_table);
-    qemu_free(s->l2_cache);
+
+    qcow2_cache_flush(bs, s->l2_table_cache);
+    qcow2_cache_flush(bs, s->refcount_block_cache);
+
+    qcow2_cache_destroy(bs, s->l2_table_cache);
+    qcow2_cache_destroy(bs, s->refcount_block_cache);
+
      qemu_free(s->cluster_cache);
      qemu_free(s->cluster_data);
      qcow2_refcount_close(bs);

This is of course the immediate suspect, but it appears correct. Perhaps it isn't called, or maybe in the wrong place?

--
error compiling committee.c: too many arguments to function




reply via email to

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