qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [Qemu-block] [PATCH v4] migration/block: move bdrv_is_a


From: Stefan Hajnoczi
Subject: Re: [Qemu-devel] [Qemu-block] [PATCH v4] migration/block: move bdrv_is_allocated() into bb's AioContext
Date: Tue, 9 May 2017 10:42:20 -0400
User-agent: Mutt/1.8.0 (2017-02-23)

On Tue, May 09, 2017 at 08:59:30PM +0800, 858585 jemmy wrote:
> On Tue, May 9, 2017 at 4:54 AM, Stefan Hajnoczi <address@hidden> wrote:
> > On Fri, May 05, 2017 at 04:03:49PM +0800, address@hidden wrote:
> >> From: Lidong Chen <address@hidden>
> >>
> >> when block migration with high-speed, mig_save_device_bulk hold the
> >> BQL and invoke bdrv_is_allocated frequently. This patch moves
> >> bdrv_is_allocated() into bb's AioContext. It will execute without
> >> blocking other I/O activity.
> >>
> >> Signed-off-by: Lidong Chen <address@hidden>
> >> ---
> >>      v4 changelog:
> >>           Use the prototype code written by Stefan and fix some bug.
> >>           moves bdrv_is_allocated() into bb's AioContext.
> >> ---
> >>  migration/block.c | 48 +++++++++++++++++++++++++++++++++++++++---------
> >>  1 file changed, 39 insertions(+), 9 deletions(-)
> >
> > Added Paolo because he's been reworking AioContext and locking.
> >
> > The goal of this patch is to avoid waiting for bdrv_is_allocated() to
> > complete while holding locks.  Do bdrv_is_allocated() in the AioContext
> > so event processing continues after yield.
> 
> Hi Paolo:
>     Some information about the problem.

Lidong, please see my comment below:

> >> @@ -274,17 +298,23 @@ static int mig_save_device_bulk(QEMUFile *f, 
> >> BlkMigDevState *bmds)
> >>      int nr_sectors;
> >>
> >>      if (bmds->shared_base) {
> >> +        AioContext *bb_ctx;
> >> +        Coroutine *co;
> >> +        MigNextAllocatedClusterData data = {
> >> +            .cur_sector = &cur_sector,
> >> +            .total_sectors = &total_sectors,
> >> +            .bb = bb,
> >> +        };
> >> +        qemu_event_init(&data.event, false);
> >> +
> >>          qemu_mutex_lock_iothread();
> >> -        aio_context_acquire(blk_get_aio_context(bb));
> >> -        /* Skip unallocated sectors; intentionally treats failure as
> >> -         * an allocated sector */
> >> -        while (cur_sector < total_sectors &&
> >> -               !bdrv_is_allocated(blk_bs(bb), cur_sector,
> >> -                                  MAX_IS_ALLOCATED_SEARCH, &nr_sectors)) {
> >> -            cur_sector += nr_sectors;
> >> -        }
> >> -        aio_context_release(blk_get_aio_context(bb));
> >> +        bdrv_inc_in_flight(blk_bs(bb));
> >
> > Please add a comment explaining why bdrv_inc_in_flight() is invoked.

Attachment: signature.asc
Description: PGP signature


reply via email to

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