From: "Martin K. Petersen" <martin.petersen@oracle.com>
To: "Ewan D. Milne" <emilne@redhat.com>
Cc: linux-scsi@vger.kernel.org, Hannes Reinecke <hare@suse.de>
Subject: Re: [PATCH 1/2] scsi: core: avoid leaving shost->last_reset with stale value if EH does not run
Date: Wed, 27 Oct 2021 23:29:10 -0400 [thread overview]
Message-ID: <yq1sfwlygts.fsf@ca-mkp.ca.oracle.com> (raw)
In-Reply-To: <20211025143952.17128-2-emilne@redhat.com> (Ewan D. Milne's message of "Mon, 25 Oct 2021 10:39:51 -0400")
Ewan,
No particular objections to the functional change, although I would
appreciate if Hannes would have a look.
> diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
> index b6c86cc..9f4001e 100644
> --- a/drivers/scsi/scsi_error.c
> +++ b/drivers/scsi/scsi_error.c
> @@ -151,9 +151,11 @@ scmd_eh_abort_handler(struct work_struct *work)
> struct scsi_cmnd *scmd =
> container_of(work, struct scsi_cmnd, abort_work.work);
> struct scsi_device *sdev = scmd->device;
> + struct Scsi_Host *shost = sdev->host;
> enum scsi_disposition rtn;
> + unsigned long flags;
>
> - if (scsi_host_eh_past_deadline(sdev->host)) {
> + if (scsi_host_eh_past_deadline(shost)) {
> SCSI_LOG_ERROR_RECOVERY(3,
> scmd_printk(KERN_INFO, scmd,
> "eh timeout, not aborting\n"));
Changing sdev->host to shost makes this patch harder to review and
creates unnecessary churn for a stable fix. Maybe postpone that
particular cleanup?
> @@ -175,12 +177,42 @@ scmd_eh_abort_handler(struct work_struct *work)
> SCSI_LOG_ERROR_RECOVERY(3,
> scmd_printk(KERN_WARNING, scmd,
> "retry aborted command\n"));
> +
> + spin_lock_irqsave(shost->host_lock, flags);
> + list_del_init(&scmd->eh_entry);
> +
> + /*
> + * If the abort succeeds, and there is no further
> + * EH action, clear the ->last_reset time.
> + */
> + if (list_empty(&shost->eh_abort_list) &&
> + list_empty(&shost->eh_cmd_q))
> + if (shost->eh_deadline != -1)
> + shost->last_reset = 0;
> +
> + spin_unlock_irqrestore(shost->host_lock, flags);
> +
Perhaps you could introduce a scsi_host_clear_last_reset() helper to
avoid duplicating this code?
--
Martin K. Petersen Oracle Linux Engineering
next prev parent reply other threads:[~2021-10-28 3:29 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-25 14:39 [PATCH 0/2] Fix SCSI async abort handling when eh_deadline is active Ewan D. Milne
2021-10-25 14:39 ` [PATCH 1/2] scsi: core: avoid leaving shost->last_reset with stale value if EH does not run Ewan D. Milne
2021-10-28 3:29 ` Martin K. Petersen [this message]
2021-10-28 20:44 ` Ewan D. Milne
2021-10-25 14:39 ` [PATCH 2/2] scsi: core: simplify control flow in scmd_eh_abort_handler Ewan D. Milne
2021-10-28 3:31 ` Martin K. Petersen
2021-10-28 20:45 ` Ewan D. Milne
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=yq1sfwlygts.fsf@ca-mkp.ca.oracle.com \
--to=martin.petersen@oracle.com \
--cc=emilne@redhat.com \
--cc=hare@suse.de \
--cc=linux-scsi@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