qemu-block
[Top][All Lists]
Advanced

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

Re: [Qemu-block] [PATCH 4/6] qcow2: Update total_sectors when resizing t


From: Leonid Bloch
Subject: Re: [Qemu-block] [PATCH 4/6] qcow2: Update total_sectors when resizing the image
Date: Mon, 30 Jul 2018 14:41:02 +0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.9.1

On 07/30/2018 12:43 PM, Kevin Wolf wrote:
Am 29.07.2018 um 23:27 hat Leonid Bloch geschrieben:
Signed-off-by: Leonid Bloch <address@hidden>
---
  block/qcow2.c | 2 ++
  1 file changed, 2 insertions(+)

diff --git a/block/qcow2.c b/block/qcow2.c
index ec9e6238a0..223d351e40 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -3646,6 +3646,8 @@ static int coroutine_fn 
qcow2_co_truncate(BlockDriverState *bs, int64_t offset,
          }
      }
+ bs->total_sectors = offset / 512;
+
      /* write updated header.size */
      offset = cpu_to_be64(offset);
      ret = bdrv_pwrite_sync(bs->file, offsetof(QCowHeader, size),

This shouldn't be necessary, bdrv_co_truncate() already updates
bs->total_sectors after calling the block driver.

It looks like without it the cache resize works only on the second resize.

If this is needed by one of the following patches, we need a comment
that explains why this seemingly superfluous assignment is actually
necessary.

Also, 512 should be BDRV_SECTOR_SIZE.

I was surprised that it's not, but it's 512 also in two other places, including in qcow2_co_truncate itself. So I decided to keep that. Probably would be better if I'd repair it in the other places instead. :)

Thanks!
Leonid.

Kevin




reply via email to

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