From: Eric Blake <eblake@redhat.com>
To: quintela@redhat.com
Cc: qemu-devel@nongnu.org, jsnow@redhat.com, qemu-block@nongnu.org,
Fam Zheng <famz@redhat.com>, Kevin Wolf <kwolf@redhat.com>,
Max Reitz <mreitz@redhat.com>, Jeff Cody <jcody@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v2 09/12] dirty-bitmap: Change bdrv_[re]set_dirty_bitmap() to use bytes
Date: Wed, 17 May 2017 08:40:05 -0500 [thread overview]
Message-ID: <cf05aa64-93f8-c067-6286-3b9b10a76c02@redhat.com> (raw)
In-Reply-To: <871srnd78k.fsf@secure.mitica>
[-- Attachment #1: Type: text/plain, Size: 2329 bytes --]
On 05/17/2017 06:59 AM, Juan Quintela wrote:
> Eric Blake <eblake@redhat.com> wrote:
>> Some of the callers were already scaling bytes to sectors; others
>> can be easily converted to pass byte offsets, all in our shift
>> towards a consistent byte interface everywhere. Making the change
>> will also make it easier to write the hold-out callers to use byte
>> rather than sectors for their iterations; it also makes it easier
>> for a future dirty-bitmap patch to offload scaling over to the
>> internal hbitmap. Although all callers happen to pass
>> sector-aligned values, make the internal scaling robust to any
>> sub-sector requests.
>>
>> Signed-off-by: Eric Blake <eblake@redhat.com>
>> Reviewed-by: John Snow <jsnow@redhat.com>
>
> Reviewed-by: Juan Quintela <quintela@redhat.com>
>
>
>> +
>> assert(bdrv_dirty_bitmap_enabled(bitmap));
>> - hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors);
>> + hbitmap_set(bitmap->bitmap, offset >> BDRV_SECTOR_BITS,
>> + end_sector - (offset >> BDRV_SECTOR_BITS));
>
> It is just me, or we use:
>
> bytes = sectors * BDRV_SECTOR_SIZE
> or
> bytes = sectors << BDRV_SECTOR_BITS
BDRV_SECTOR_SIZE is ULL, while BDRV_SECTOR_BITS is not. Multiplying by
SIZE guarantees a 64-bit answer, but shifting by bits will give only a
32-bit answer if the left hand side of << is not already 64 bits (I've
had bugs in earlier conversion patches where I used << but should have
used *). So for scaling up, my recent round of patches have been
favoring * (ideally, since BDRV_SECTOR_SIZE is a power-of-2 constant,
the compiler optimizes it into a shift anyways instead of wasting time
on a multiply).
For scaling down, '/ SIZE' and '>> BITS' are equivalent, but I prefer
the >> form.
>
> and the same from bytes to sectors (no, this patch is consistent,
> but just looking at the file ....)
The real end-goal is to update the file to track the entire process with
bytes everywhere (and skip the intermediate representation in sectors),
which will reduce the number of scaling operations needed in the first
place. migration/block.c isn't quite there yet, but we'll get there.
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2017-05-17 13:40 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-16 20:47 [Qemu-devel] [PATCH v2 00/12] make dirty-bitmap byte-based Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 01/12] dirty-bitmap: Report BlockDirtyInfo.count in bytes, as documented Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 02/12] migration: Don't lose errno across aio context changes Eric Blake
2017-06-27 3:15 ` Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 03/12] dirty-bitmap: Drop unused functions Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 04/12] dirty-bitmap: Track size in bytes Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 05/12] dirty-bitmap: Set iterator start by offset, not sector Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 06/12] dirty-bitmap: Change bdrv_dirty_iter_next() to report byte offset Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 07/12] dirty-bitmap: Change bdrv_get_dirty_count() to report bytes Eric Blake
2017-05-17 11:34 ` Juan Quintela
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 08/12] dirty-bitmap: Change bdrv_get_dirty() to take bytes Eric Blake
2017-05-17 11:37 ` Juan Quintela
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 09/12] dirty-bitmap: Change bdrv_[re]set_dirty_bitmap() to use bytes Eric Blake
2017-05-17 11:59 ` Juan Quintela
2017-05-17 13:40 ` Eric Blake [this message]
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 10/12] mirror: Switch mirror_dirty_init() to byte-based iteration Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 11/12] dirty-bitmap: Switch bdrv_set_dirty() to bytes Eric Blake
2017-05-16 20:47 ` [Qemu-devel] [PATCH v2 12/12] dirty-bitmap: Convert internal hbitmap size/granularity Eric Blake
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=cf05aa64-93f8-c067-6286-3b9b10a76c02@redhat.com \
--to=eblake@redhat.com \
--cc=dgilbert@redhat.com \
--cc=famz@redhat.com \
--cc=jcody@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=quintela@redhat.com \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).