public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
From: "Nicholas A. Bellinger" <nab@linux-iscsi.org>
To: Roland Dreier <roland@kernel.org>
Cc: linux-scsi@vger.kernel.org, target-devel@vger.kernel.org
Subject: Re: [PATCH] target: Make se_dev_check_online() locking IRQ-safe
Date: Wed, 15 Jun 2011 10:08:24 -0700	[thread overview]
Message-ID: <1308157704.20109.29.camel@haakon2.linux-iscsi.org> (raw)
In-Reply-To: <1308023706-7255-1-git-send-email-roland@kernel.org>

On Mon, 2011-06-13 at 20:55 -0700, Roland Dreier wrote:
> From: Roland Dreier <roland@purestorage.com>
> 
> se_dev_check_online() is called from transport_lookup_cmd_lun(), which
> as discussed before may be called from interrupt context.  So it needs
> to use spin_lock_irqsave() instead of spin_lock_irq() to avoid
> enabling interrupts at the wrong time.
> 
> Signed-off-by: Roland Dreier <roland@purestorage.com>

Committed as 91e8524637

Thanks Roland!

--nab

> ---
>  drivers/target/target_core_device.c |    5 +++--
>  1 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/target/target_core_device.c b/drivers/target/target_core_device.c
> index fcb8161..f2a4bf2 100644
> --- a/drivers/target/target_core_device.c
> +++ b/drivers/target/target_core_device.c
> @@ -815,12 +815,13 @@ static void se_dev_stop(struct se_device *dev)
>  
>  int se_dev_check_online(struct se_device *dev)
>  {
> +	unsigned long flags;
>  	int ret;
>  
> -	spin_lock_irq(&dev->dev_status_lock);
> +	spin_lock_irqsave(&dev->dev_status_lock, flags);
>  	ret = ((dev->dev_status & TRANSPORT_DEVICE_ACTIVATED) ||
>  	       (dev->dev_status & TRANSPORT_DEVICE_DEACTIVATED)) ? 0 : 1;
> -	spin_unlock_irq(&dev->dev_status_lock);
> +	spin_unlock_irqrestore(&dev->dev_status_lock, flags);
>  
>  	return ret;
>  }
> --
> To unsubscribe from this list: send the line "unsubscribe target-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


      reply	other threads:[~2011-06-15 17:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-14  3:55 [PATCH] target: Make se_dev_check_online() locking IRQ-safe Roland Dreier
2011-06-15 17:08 ` Nicholas A. Bellinger [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=1308157704.20109.29.camel@haakon2.linux-iscsi.org \
    --to=nab@linux-iscsi.org \
    --cc=linux-scsi@vger.kernel.org \
    --cc=roland@kernel.org \
    --cc=target-devel@vger.kernel.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