qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v6 10/14] blockdev: make BlockJobTxn available t


From: Max Reitz
Subject: Re: [Qemu-devel] [PATCH v6 10/14] blockdev: make BlockJobTxn available to qmp 'transaction'
Date: Fri, 18 Sep 2015 13:20:27 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0

On 15.09.2015 08:11, Fam Zheng wrote:
> From: Stefan Hajnoczi <address@hidden>
> 
> Provide a BlockJobTxn to actions executed in a qmp 'transaction'
> command.  This allows actions to make their block jobs either complete
> as a group or fail/cancel together.
> 
> The next patch adds the first user.
> 
> Signed-off-by: Stefan Hajnoczi <address@hidden>
> Reviewed-by: Fam Zheng <address@hidden>
> Reviewed-by: John Snow <address@hidden>

I'm still wondering which covert channel you are using to get these R-bs
from John.

Until I know I myself will have to resort to this open channel here:

Reviewed-by: Max Reitz <address@hidden>

> Signed-off-by: Fam Zheng <address@hidden>
> ---
>  blockdev.c | 6 ++++++
>  1 file changed, 6 insertions(+)
> 
> diff --git a/blockdev.c b/blockdev.c
> index 4ebded8..93a9eef 100644
> --- a/blockdev.c
> +++ b/blockdev.c
> @@ -1285,6 +1285,7 @@ typedef struct BlkActionOps {
>  struct BlkActionState {
>      TransactionAction *action;
>      const BlkActionOps *ops;
> +    BlockJobTxn *block_job_txn;
>      QSIMPLEQ_ENTRY(BlkActionState) entry;
>  };
>  
> @@ -1889,12 +1890,15 @@ static const BlkActionOps actions[] = {
>  void qmp_transaction(TransactionActionList *dev_list, Error **errp)
>  {
>      TransactionActionList *dev_entry = dev_list;
> +    BlockJobTxn *block_job_txn;
>      BlkActionState *state, *next;
>      Error *local_err = NULL;
>  
>      QSIMPLEQ_HEAD(snap_bdrv_states, BlkActionState) snap_bdrv_states;
>      QSIMPLEQ_INIT(&snap_bdrv_states);
>  
> +    block_job_txn = block_job_txn_new();
> +
>      /* drain all i/o before any operations */
>      bdrv_drain_all();
>  
> @@ -1914,6 +1918,7 @@ void qmp_transaction(TransactionActionList *dev_list, 
> Error **errp)
>          state = g_malloc0(ops->instance_size);
>          state->ops = ops;
>          state->action = dev_info;
> +        state->block_job_txn = block_job_txn;
>          QSIMPLEQ_INSERT_TAIL(&snap_bdrv_states, state, entry);
>  
>          state->ops->prepare(state, &local_err);
> @@ -1946,6 +1951,7 @@ exit:
>          }
>          g_free(state);
>      }
> +    block_job_txn_unref(block_job_txn);
>  }
>  
>  
> 


Attachment: signature.asc
Description: OpenPGP digital signature


reply via email to

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