From: Luben Tuikov <luben_tuikov@adaptec.com>
To: "Tuikov, Luben" <Luben_Tuikov@adaptec.com>
Cc: SCSI Mailing List <linux-scsi@vger.kernel.org>
Subject: Signed-off-by: added [Re: [PATCH]: Flexible timeout infrastructure]
Date: Tue, 15 Jun 2004 11:08:52 -0400 [thread overview]
Message-ID: <40CF1104.30903@adaptec.com> (raw)
In-Reply-To: <40CF0F9F.4050902@adaptec.com>
Signed-off-by: Luben Tuikov <luben_tuikov@adaptec.com>
===== drivers/scsi/scsi.c 1.143 vs edited =====
--- 1.143/drivers/scsi/scsi.c 2004-04-28 12:32:09 -04:00
+++ edited/drivers/scsi/scsi.c 2004-06-14 15:13:12 -04:00
@@ -549,7 +549,12 @@
host->resetting = 0;
}
- scsi_add_timer(cmd, cmd->timeout_per_command, scsi_times_out);
+ /* If the LLDD claims to be able to handle its own command timeout,
+ * don't start the timer. It will start it before sending the command
+ * to the LU.
+ */
+ if (!host->hostt->eh_cmd_timed_out)
+ scsi_add_timer(cmd, cmd->timeout_per_command, scsi_times_out);
scsi_log_send(cmd);
@@ -699,8 +704,9 @@
* that function could really be. It might be on another processor,
* etc, etc.
*/
- if (!scsi_delete_timer(cmd))
- return;
+ if (!cmd->device->host->hostt->eh_cmd_timed_out)
+ if (!scsi_delete_timer(cmd))
+ return;
/*
* Set the serial numbers back to zero
===== drivers/scsi/scsi_error.c 1.76 vs edited =====
--- 1.76/drivers/scsi/scsi_error.c 2004-06-04 12:54:06 -04:00
+++ edited/drivers/scsi/scsi_error.c 2004-06-14 15:13:53 -04:00
@@ -155,8 +155,8 @@
}
/**
- * scsi_times_out - Timeout function for normal scsi commands.
- * @scmd: Cmd that is timing out.
+ * scsi_times_out - Timeout function for normal SCSI commands.
+ * @scmd: Command that is timing out.
*
* Notes:
* We do not need to lock this. There is the potential for a race
@@ -166,7 +166,16 @@
**/
void scsi_times_out(struct scsi_cmnd *scmd)
{
+ int ret = EH_NONE;
+
scsi_log_completion(scmd, TIMEOUT_ERROR);
+
+ if (scmd->device->host->hostt->eh_cmd_timed_out)
+ ret = scmd->device->host->hostt->eh_cmd_timed_out(scmd);
+
+ if (ret == EH_HANDLED)
+ return;
+
if (unlikely(!scsi_eh_scmd_add(scmd, SCSI_EH_CANCEL_CMD))) {
panic("Error handler thread not present at %p %p %s %d",
scmd, scmd->device->host, __FILE__, __LINE__);
===== drivers/scsi/scsi_syms.c 1.47 vs edited =====
--- 1.47/drivers/scsi/scsi_syms.c 2004-05-19 13:46:14 -04:00
+++ edited/drivers/scsi/scsi_syms.c 2004-06-14 11:09:29 -04:00
@@ -107,3 +107,4 @@
*/
EXPORT_SYMBOL(scsi_add_timer);
EXPORT_SYMBOL(scsi_delete_timer);
+EXPORT_SYMBOL(scsi_times_out);
===== include/scsi/scsi.h 1.21 vs edited =====
--- 1.21/include/scsi/scsi.h 2004-04-21 12:54:43 -04:00
+++ edited/include/scsi/scsi.h 2004-06-14 14:33:15 -04:00
@@ -327,6 +327,12 @@
#define SCSI_MLQUEUE_EH_RETRY 0x1057
/*
+ * LLDD timeout handler return values
+ */
+#define EH_NONE (0)
+#define EH_HANDLED (1)
+
+/*
* Use these to separate status msg and our bytes
*
* These are set by:
===== include/scsi/scsi_eh.h 1.2 vs edited =====
--- 1.2/include/scsi/scsi_eh.h 2004-06-04 07:45:01 -04:00
+++ edited/include/scsi/scsi_eh.h 2004-06-14 11:12:13 -04:00
@@ -7,10 +7,11 @@
extern void scsi_add_timer(struct scsi_cmnd *, int,
void (*)(struct scsi_cmnd *));
-extern int scsi_delete_timer(struct scsi_cmnd *);
+extern int scsi_delete_timer(struct scsi_cmnd *);
+extern void scsi_times_out(struct scsi_cmnd *);
extern void scsi_report_bus_reset(struct Scsi_Host *, int);
extern void scsi_report_device_reset(struct Scsi_Host *, int, int);
-extern int scsi_block_when_processing_errors(struct scsi_device *);
+extern int scsi_block_when_processing_errors(struct scsi_device *);
extern void scsi_sleep(int);
/*
===== include/scsi/scsi_host.h 1.17 vs edited =====
--- 1.17/include/scsi/scsi_host.h 2004-06-04 12:51:31 -04:00
+++ edited/include/scsi/scsi_host.h 2004-06-14 15:12:23 -04:00
@@ -125,6 +125,40 @@
int (* eh_bus_reset_handler)(struct scsi_cmnd *);
int (* eh_host_reset_handler)(struct scsi_cmnd *);
+
+ /*
+ * If defined, SCSI Core will leave _all_ command timeout
+ * handling to the LLDD. The LLDD should call
+ * scsi_add_timer(<cmd>,<timeout>,scsi_times_out) when
+ * appropriate, possibly before sending the command to the LU,
+ * and scsi_delete_timer(<cmd>) before returning it to SCSI
+ * Core. That is, a SCSI command is passed to the LLDD (via
+ * queuecommand()) _without_ a timer running and is expected
+ * to be returned to SCSI Core (via scsi_done()) just the
+ * same, without one running.
+ *
+ * This method is called whenever a SCSI command times out, if
+ * the driver had called
+ * scsi_add_timer(<cmd>,<timeout>,scsi_times_out) of course.
+ *
+ * Returns: EH_HANDLED or EH_NONE.
+ * EH_HANDLED -- means that the LLDD has taken all steps
+ * to ensure proper command recovery handling and had
+ * A) either called scsi_done() and set the response/result
+ * properly in the SCSI command structure,
+ * XOR
+ * B) resent the command to the LU.
+ * EH_NONE -- SCSI Core should try to recover the command as
+ * usual (eh recovery thread, etc).
+ *
+ * If this method is not defined, current/old behaviour is assumed.
+ *
+ * NOTE: This runs in interrupt context, so it cannot sleep.
+ *
+ * STATUS: OPTIONAL
+ */
+ int (* eh_cmd_timed_out)(struct scsi_cmnd *);
+
/*
* Old EH handlers, no longer used. Make them warn the user of old
* drivers by using a wrong type
next prev parent reply other threads:[~2004-06-15 15:08 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-15 15:02 [PATCH]: Flexible timeout infrastructure Luben Tuikov
2004-06-15 15:08 ` Luben Tuikov [this message]
2004-06-15 15:24 ` Signed-off-by: added [Re: [PATCH]: Flexible timeout infrastructure] Matthew Wilcox
2004-06-15 15:27 ` [PATCH]: Flexible timeout infrastructure Arjan van de Ven
2004-06-15 15:40 ` Luben Tuikov
2004-06-15 15:42 ` Christoph Hellwig
2004-06-15 15:46 ` Luben Tuikov
2004-06-15 15:49 ` Christoph Hellwig
2004-06-15 15:43 ` Arjan van de Ven
2004-06-15 15:48 ` Luben Tuikov
2004-06-15 15:57 ` Christoph Hellwig
2004-06-15 16:07 ` Arjan van de Ven
2004-06-15 16:24 ` Doug Ledford
2004-06-15 16:27 ` Luben Tuikov
2004-06-15 16:33 ` Arjan van de Ven
2004-06-15 18:07 ` Luben Tuikov
2004-06-15 15:31 ` James Bottomley
2004-06-15 18:15 ` Mike Anderson
2004-06-15 18:37 ` Luben Tuikov
2004-06-15 19:20 ` Mike Anderson
2004-06-15 19:52 ` Luben Tuikov
2004-06-15 20:57 ` Mike Anderson
2004-06-15 22:00 ` Luben Tuikov
2004-06-15 22:31 ` Luben Tuikov
2004-06-15 22:13 ` Doug Ledford
2004-06-15 19:12 ` Luben Tuikov
2004-06-15 19:54 ` James Bottomley
2004-06-16 15:27 ` Mike Anderson
2004-06-16 15:37 ` James Bottomley
2004-06-16 15:48 ` Luben Tuikov
2004-06-16 15:58 ` James Bottomley
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=40CF1104.30903@adaptec.com \
--to=luben_tuikov@adaptec.com \
--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