From: Wenchao Hao <haowenchao22@gmail.com>
To: Hannes Reinecke <hare@suse.de>,
"James E . J . Bottomley" <James.Bottomley@HansenPartnership.com>,
"Martin K . Petersen" <martin.petersen@oracle.com>,
linux-scsi@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 2/3] scsi: scsi_error: Fix wrong statistic when print error info
Date: Wed, 12 Jun 2024 23:12:56 +0800 [thread overview]
Message-ID: <68b4dbc5-18ee-4dc7-85da-dd420df9bf16@gmail.com> (raw)
In-Reply-To: <15f0fb9b-3b30-413d-9f30-81c246b6bae1@suse.de>
On 6/12/24 4:34 PM, Hannes Reinecke wrote:
> On 6/5/24 11:17, Wenchao Hao wrote:
>> shost_for_each_device() would skip devices which is in progress of
>> removing, so commands of these devices would be ignored in
>> scsi_eh_prt_fail_stats().
>>
>> Fix this issue by using shost_for_each_device_include_deleted()
>> to iterate devices in scsi_eh_prt_fail_stats().
>>
>> Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
>> Signed-off-by: Wenchao Hao <haowenchao22@gmail.com>
>> ---
>> drivers/scsi/scsi_error.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
>> index 612489afe8d2..a61fd8af3b1f 100644
>> --- a/drivers/scsi/scsi_error.c
>> +++ b/drivers/scsi/scsi_error.c
>> @@ -409,7 +409,7 @@ static inline void scsi_eh_prt_fail_stats(struct Scsi_Host *shost,
>> int cmd_cancel = 0;
>> int devices_failed = 0;
>> - shost_for_each_device(sdev, shost) {
>> + shost_for_each_device_include_deleted(sdev, shost) {
>> list_for_each_entry(scmd, work_q, eh_entry) {
>> if (scmd->device == sdev) {
>> ++total_failures;
>
> That is wrong. We should rather add a failure counter to the SCSI host, and have the scsi device increase it every time a failure occurs.
> Then we can avoid this loop completely.
>
This function would print the total failure commands and the number of device like following:
scsi host4: Total of 3 commands on 2 devices require eh work
Just add a failure counter to the SCSI host can not record the number of devices.
> Cheers,
>
> Hannes
next prev parent reply other threads:[~2024-06-12 15:13 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-05 9:17 [PATCH v5 0/3] SCSI: Fix issues between removing device and error handle Wenchao Hao
2024-06-05 9:17 ` [PATCH v5 1/3] scsi: core: Add new helper to iterate all devices of host Wenchao Hao
2024-06-12 8:33 ` Hannes Reinecke
2024-06-12 15:06 ` Wenchao Hao
2024-06-13 6:27 ` Hannes Reinecke
2024-06-13 7:10 ` Wenchao Hao
2024-07-12 2:20 ` Wenchao Hao
2024-06-05 9:17 ` [PATCH v5 2/3] scsi: scsi_error: Fix wrong statistic when print error info Wenchao Hao
2024-06-12 8:34 ` Hannes Reinecke
2024-06-12 15:12 ` Wenchao Hao [this message]
2024-06-05 9:17 ` [PATCH v5 3/3] scsi: scsi_error: Fix device reset is not triggered Wenchao Hao
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=68b4dbc5-18ee-4dc7-85da-dd420df9bf16@gmail.com \
--to=haowenchao22@gmail.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=hare@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=martin.petersen@oracle.com \
/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).