From: Kevin Wolf <kwolf@redhat.com>
To: Peter Lieven <pl@kamp.de>
Cc: qemu-devel@nongnu.org, qemu-block@nongnu.org, mreitz@redhat.com
Subject: Re: [Qemu-devel] [PATCH V4] qemu-img: align result of is_allocated_sectors
Date: Tue, 10 Jul 2018 15:06:38 +0200 [thread overview]
Message-ID: <20180710130638.GH5852@localhost.localdomain> (raw)
In-Reply-To: <66172b50-db34-73c8-124a-5a2481b8e14b@kamp.de>
Am 10.07.2018 um 14:36 hat Peter Lieven geschrieben:
> Am 10.07.2018 um 14:28 schrieb Kevin Wolf:
> > Am 07.07.2018 um 13:42 hat Peter Lieven geschrieben:
> > > We currently don't enforce that the sparse segments we detect during convert are
> > > aligned. This leads to unnecessary and costly read-modify-write cycles either
> > > internally in Qemu or in the background on the storage device as nearly all
> > > modern filesystems or hardware have a 4k alignment internally.
> > >
> > > This patch modifies is_allocated_sectors so that its *pnum result will always
> > > end at an alignment boundary. This way all requests will end at an alignment
> > > boundary. The start of all requests will also be aligned as long as the results
> > > of get_block_status do not lead to an unaligned offset.
> > >
> > > The number of RMW cycles when converting an example image [1] to a raw device that
> > > has 4k sector size is about 4600 4k read requests to perform a total of about 15000
> > > write requests. With this path the additional 4600 read requests are eliminated while
> > > the number of total write requests stays constant.
> > >
> > > [1] https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.vmdk
> > >
> > > Signed-off-by: Peter Lieven <pl@kamp.de>
> > > ---
> > > V3->V4: - only focus on the end offset in is_allocated_sectors [Kevin]
> > > V2->V3: - ensure that s.alignment is a power of 2
> > > - correctly handle n < alignment in is_allocated_sectors if
> > > sector_num % alignment > 0.
> > > V1->V2: - take the current sector offset into account [Max]
> > > - try to figure out the target alignment [Max]
> > >
> > > qemu-img.c | 44 ++++++++++++++++++++++++++++++++++++++------
> > > 1 file changed, 38 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/qemu-img.c b/qemu-img.c
> > > index e1a506f..20e3236 100644
> > > --- a/qemu-img.c
> > > +++ b/qemu-img.c
> > > @@ -1105,11 +1105,15 @@ static int64_t find_nonzero(const uint8_t *buf, int64_t n)
> > > *
> > > * 'pnum' is set to the number of sectors (including and immediately following
> > > * the first one) that are known to be in the same allocated/unallocated state.
> > > + * The function will try to align the end offset to alignment boundaries so
> > > + * that the request will at least end aligned and consequtive requests will
> > > + * also start at an aligned offset.
> > > */
> > > -static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
> > > +static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum,
> > > + int64_t sector_num, int alignment)
> > > {
> > > bool is_zero;
> > > - int i;
> > > + int i, tail;
> > > if (n <= 0) {
> > > *pnum = 0;
> > > @@ -1122,6 +1126,23 @@ static int is_allocated_sectors(const uint8_t *buf, int n, int *pnum)
> > > break;
> > > }
> > > }
> > > +
> > > + tail = (sector_num + i) & (alignment - 1);
> > > + if (tail) {
> > > + if (is_zero && i == tail) {
> > Should this be i <= tail for the case where sector_num is unaligned?
> >
> > For example:
> >
> > Bytes 0 - 1024: zero
> > Bytes 1024 - 4096: non-zero
> >
> > /* Check from 512 to 4096, alignment 2048 */
> > is_allocated_sectors(buf, 7, &pnum, 1, 4)
> >
> > -> is_zero = true
> > -> i = 1
> > -> tail = (sector_num + i) & (alignment - 1)
> > = (1 + 1) & (4 - 1)
> > = 2
> > != i
>
> You are right. I missed that.
>
> >
> > > + /* treat unallocated areas which only consist
> > > + * of a small tail as allocated. */
> > > + is_zero = 0;
> > (This should be false rather than 0, is_zero is a bool)
>
> will fix.
>
> >
> > > + }
> > > + if (!is_zero) {
> > > + /* align up end offset of allocated areas. */
> > > + i += alignment - tail;
> > > + i = MIN(i, n);
> > > + } else {
> > > + /* align down end offset of zero areas. */
> > > + i -= tail;
> > So our example above will end up in this branch and we get:
> >
> > i = i - tail
> > = 1 - 2
> > = -1
> >
> > I'm not sure what callers will do with a negative *pnum, but I expect it
> > won't be anything good.
>
> But with i <= tail, we avoid ending up here.
> So with the 2 fixes you are okay with this Patch?
I think so, yes.
Kevin
prev parent reply other threads:[~2018-07-10 13:06 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-07 11:42 [Qemu-devel] [PATCH V4] qemu-img: align result of is_allocated_sectors Peter Lieven
2018-07-10 12:28 ` Kevin Wolf
2018-07-10 12:36 ` Peter Lieven
2018-07-10 13:06 ` Kevin Wolf [this message]
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=20180710130638.GH5852@localhost.localdomain \
--to=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=pl@kamp.de \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/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).