[PATCH] nvme_fc: fix iowait hang
Richard Weinberger
richard.weinberger at gmail.com
Fri Sep 22 05:12:30 PDT 2017
On Thu, Sep 21, 2017 at 12:16 AM, James Smart <jsmart2021 at gmail.com> wrote:
> Add missing iowait head initialization.
> Fix irqsave vs irq
Please explain why _irqsave is the wrong spinlock variant.
You know why, I know why, but not all of us do. ;-)
> Signed-off-by: James Smart <james.smart at broadcom.com>
> ---
> drivers/nvme/host/fc.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/nvme/host/fc.c b/drivers/nvme/host/fc.c
> index af075e998944..8182b1999f49 100644
> --- a/drivers/nvme/host/fc.c
> +++ b/drivers/nvme/host/fc.c
> @@ -2545,10 +2545,10 @@ nvme_fc_delete_association(struct nvme_fc_ctrl *ctrl)
> nvme_fc_abort_aen_ops(ctrl);
>
> /* wait for all io that had to be aborted */
> - spin_lock_irqsave(&ctrl->lock, flags);
> + spin_lock_irq(&ctrl->lock);
> wait_event_lock_irq(ctrl->ioabort_wait, ctrl->iocnt == 0, ctrl->lock);
> ctrl->flags &= ~FCCTRL_TERMIO;
> - spin_unlock_irqrestore(&ctrl->lock, flags);
> + spin_unlock_irq(&ctrl->lock);
>
> nvme_fc_term_aen_ops(ctrl);
>
> @@ -2760,6 +2760,7 @@ nvme_fc_init_ctrl(struct device *dev, struct nvmf_ctrl_options *opts,
> ctrl->rport = rport;
> ctrl->dev = lport->dev;
> ctrl->cnum = idx;
> + init_waitqueue_head(&ctrl->ioabort_wait);
>
> get_device(ctrl->dev);
> kref_init(&ctrl->ref);
--
Thanks,
//richard
More information about the Linux-nvme
mailing list