From: Takahiro Yasui <tyasui@redhat.com>
To: linux-scsi@vger.kernel.org
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Subject: [RFC][PATCH 0/2] Introduce the parameter to limit scsi timeout count (take 2)
Date: Fri, 19 Jun 2009 18:38:46 -0400 [thread overview]
Message-ID: <4A3C1376.4080305@redhat.com> (raw)
Hi,
This is the updated patch to limit scsi timeout count.
[RFC][PATCH] Introduce the parameter to limit scsi timeout count
http://marc.info/?l=linux-scsi&m=124388354119073&w=2
BACKGROUND
==========
A storage can break down in the way that it does not respond to scsi
commands such as read/write, while a storage successfully respond to
scsi commands such as test unit ready.
(It may depend on implementation of storage.)
When this type of a device trouble happens, the scsi-mid layer detects
timeout for the device, and scsi-mid layer tries to recover the error.
Then, scsi-mid layer detects that the device has been recovered by
the result of Test Unit Ready.
Therefore, the state of the device is not changed to offline and user
application can continue to issue I/Os to the device. This may cause
timeout errors repeatedly on the same device, and application can not
do proper actions quickly.
In addition, this issue seriously affects system boot time. During
device scanning in scsi-mid layer, read I/Os are issued to recognized
devices to get their partition table in check_partition(). Usually,
many types of filesystems are registered, and partition check is
executed for every filesystems. This is a very long process because
every read I/O ends up by timeout.
Moreover, scsi device scan is sequentially done, and other devices
wait to be scanned. In some Linux distributions, boot processes go
forward before valid devices are recognised, and system can not start
correctly even if devices are fully redundant by mirroring.
SOLUTIONS
=========
Introduce the parameter to limit the maximum number of timeout count
in scsi-mid layer. When the number of timeout count of a device
reaches the maximum timeout count, the device is offlined.
This parameter is configurable by sysfs.
In addition, to address the issue at kernel boot, a scsi module
parameter, initparam, is added to set default values, timeout
value and maximum timeout count. These values can be defined for
devices identified by vender/model as scsi devinfo does.
PATCH SET
=========
1/2: Limit scsi timeout count per device
2/2: Interface to set default timeout related values
EXAMPLE
=======
* Limit a scsi timout count to 1
# echo 1 > /sys/block/<sdX>/device/max_timeout_cnt
# cat /sys/block/<sdX>/device/max_timeout_cnt
1
* Display a current timeout count
# cat /sys/block/<sdX>/device/iotimeout_cnt
0
* Load scsi module with a default scsi timeout(10s) and
maximum timeout count (1) for HITACHI/DF600.
# insmod scsi_mod.ko initparm="HITACHI:DF600:10:1"
* Show current default configurations.
# cat /proc/scsi/initparm
'HITACHI' 'DF600' timeout=10 max_timeout_cnt=1
I appreciate your comments and suggestions.
Thanks,
---
Takahiro Yasui
Hitachi Computer Products (America), Inc.
reply other threads:[~2009-06-19 22:36 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=4A3C1376.4080305@redhat.com \
--to=tyasui@redhat.com \
--cc=James.Bottomley@HansenPartnership.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;
as well as URLs for NNTP newsgroup(s).