Re: [PATCH] scsi: core: Report error list information in debugfs

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 8/22/23 02:04, John Garry wrote:
If it's on the first list, then there is not much point in checking this list.
It might be even worth checking list_empty(&cmd->eh_entry) initially also to
save the bother.

Having said all this, adding those checks will add lots of unpleasant indentation...

Since the above code is only used to export information through debugfs I don't
think that it should be optimized heavily? Anyway, how about combining the
(untested) patch below with the above patch?

diff --git a/drivers/scsi/scsi_debugfs.c b/drivers/scsi/scsi_debugfs.c
index a9bc5f7ce745..f795848b316c 100644
--- a/drivers/scsi/scsi_debugfs.c
+++ b/drivers/scsi/scsi_debugfs.c
@@ -45,15 +45,16 @@ void scsi_show_rq(struct seq_file *m, struct request *rq)
 	list_for_each_entry(cmd2, &shost->eh_abort_list, eh_entry) {
 		if (cmd == cmd2) {
 			list_info = "on eh_abort_list";
-			break;
+			goto unlock;
 		}
 	}
 	list_for_each_entry(cmd2, &shost->eh_cmd_q, eh_entry) {
 		if (cmd == cmd2) {
 			list_info = "on eh_cmd_q";
-			break;
+			goto unlock;
 		}
 	}
+unlock:
 	spin_unlock_irq(shost->host_lock);

 	__scsi_format_command(buf, sizeof(buf), cmd->cmnd, cmd->cmd_len);

Thanks,

Bart.



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]

  Powered by Linux