qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [RFC PATCH 3/7] block: Add op blocker notifier list


From: Paolo Bonzini
Subject: Re: [Qemu-devel] [RFC PATCH 3/7] block: Add op blocker notifier list
Date: Wed, 06 May 2015 16:22:54 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0


On 06/05/2015 13:23, Fam Zheng wrote:
>  void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
>  {
>      BdrvOpBlocker *blocker;
>      assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
>  
> +    bdrv_op_blocker_notify(bs, op, reason, true);
>      blocker = g_new0(BdrvOpBlocker, 1);
>      blocker->reason = reason;
>      QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
> @@ -3405,6 +3424,7 @@ void bdrv_op_unblock(BlockDriverState *bs, BlockOpType 
> op, Error *reason)
>  {
>      BdrvOpBlocker *blocker, *next;
>      assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
> +    bdrv_op_blocker_notify(bs, op, reason, false);
>      QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
>          if (blocker->reason == reason) {
>              QLIST_REMOVE(blocker, list);

Changed in the following patch.

Also, should we only invoke the notifier if the list becomes
empty/non-empty?  Is there any reason why the notifier would like to
know the particular Error that was added?

Paolo



reply via email to

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