diff options
author | Hannes Reinecke <hare@suse.de> | 2014-10-24 14:27:02 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2014-11-12 11:16:06 +0100 |
commit | a222b1e2fe4299a01c86ea8ccafbf0a05aeaa5a1 (patch) | |
tree | 97e962425ba693e38c101214b6f4cdbd1fefdad9 /drivers/scsi/hosts.c | |
parent | c11c004b1c052fae77d3d0d14462d1f3a4e88d06 (diff) | |
download | talos-obmc-linux-a222b1e2fe4299a01c86ea8ccafbf0a05aeaa5a1.tar.gz talos-obmc-linux-a222b1e2fe4299a01c86ea8ccafbf0a05aeaa5a1.zip |
scsi: fixup logging messages in scsi_error.c
Use the matching scope for logging messages to allow for
better command tracing.
Signed-off-by: Hannes Reinecke <hare@suse.de>
Suggested-by: Robert Elliott <elliott@hp.com>
Reviewed-by: Robert Elliott <elliott@hp.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'drivers/scsi/hosts.c')
-rw-r--r-- | drivers/scsi/hosts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c index 6de80e352871..06030e1ad696 100644 --- a/drivers/scsi/hosts.c +++ b/drivers/scsi/hosts.c @@ -485,8 +485,8 @@ struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *sht, int privsize) WQ_UNBOUND | WQ_MEM_RECLAIM, 1, shost->host_no); if (!shost->tmf_work_q) { - printk(KERN_WARNING "scsi%d: failed to create tmf workq\n", - shost->host_no); + shost_printk(KERN_WARNING, shost, + "failed to create tmf workq\n"); goto fail_kthread; } scsi_proc_hostdir_add(shost->hostt); |