qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH] iscsi: fix race between task completition and t


From: Kevin Wolf
Subject: Re: [Qemu-devel] [PATCH] iscsi: fix race between task completition and task abortion
Date: Tue, 14 Aug 2012 16:57:13 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120605 Thunderbird/13.0

Am 14.08.2012 08:44, schrieb Stefan Priebe:
> From: spriebe <address@hidden>
> 
> ---
>  block/iscsi.c |   36 ++++++++++++++++++++----------------
>  1 files changed, 20 insertions(+), 16 deletions(-)

It would be nice to have your full name and a valid email address in the
From: line (needs an update of your git config) and a more detailed
explanation of the problem that you're fixing.

Having a Signed-off-by line, however, is absolutely required and the
patch can't be merged without it.

> 
> diff --git a/block/iscsi.c b/block/iscsi.c
> index 12ca76d..257f97f 100644
> --- a/block/iscsi.c
> +++ b/block/iscsi.c
> @@ -76,6 +76,10 @@ static void
>  iscsi_abort_task_cb(struct iscsi_context *iscsi, int status, void 
> *command_data,
>                      void *private_data)
>  {
> +           IscsiAIOCB *acb = (IscsiAIOCB *)private_data;
> +
> +           scsi_free_scsi_task(acb->task);
> +           acb->task = NULL;

Please use scripts/checkpatch.pl. qemu uses an indentation of four
spaces, more coding style violations follow.

Kevin



reply via email to

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