mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 12:04:08 +00:00
[SCSI] mpt fusion: fix up fusion prints using the sdev_printk, dev_printk, and shost_printk API
Cleaning up prints that use the xxx_printk API, in that the fusion preamble "mptbase: iocX" follows the info provided by the print API. The way its currently coded, the [H:C:T] print in sdev_printk will be inbetween "mptbase" and "iocX", instead of before. Signed-off-by: Eric Moore <Eric.Moore@lsi.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
e8206381f5
commit
c51d0beaae
4 changed files with 20 additions and 18 deletions
|
@ -186,6 +186,7 @@
|
||||||
* MPT drivers. NOTE: Users of these macro defs must
|
* MPT drivers. NOTE: Users of these macro defs must
|
||||||
* themselves define their own MYNAM.
|
* themselves define their own MYNAM.
|
||||||
*/
|
*/
|
||||||
|
#define MYIOC_s_FMT MYNAM ": %s: "
|
||||||
#define MYIOC_s_DEBUG_FMT KERN_DEBUG MYNAM ": %s: "
|
#define MYIOC_s_DEBUG_FMT KERN_DEBUG MYNAM ": %s: "
|
||||||
#define MYIOC_s_INFO_FMT KERN_INFO MYNAM ": %s: "
|
#define MYIOC_s_INFO_FMT KERN_INFO MYNAM ": %s: "
|
||||||
#define MYIOC_s_NOTE_FMT KERN_NOTICE MYNAM ": %s: "
|
#define MYIOC_s_NOTE_FMT KERN_NOTICE MYNAM ": %s: "
|
||||||
|
|
|
@ -318,8 +318,8 @@ mptsas_set_rphy(MPT_ADAPTER *ioc, struct mptsas_phyinfo *phy_info, struct sas_rp
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rphy) {
|
if (rphy) {
|
||||||
dsaswideprintk(ioc, dev_printk(MYIOC_s_DEBUG_FMT,
|
dsaswideprintk(ioc, dev_printk(KERN_DEBUG,
|
||||||
&rphy->dev, "add:", ioc->name));
|
&rphy->dev, MYIOC_s_FMT "add:", ioc->name));
|
||||||
dsaswideprintk(ioc, printk(MYIOC_s_DEBUG_FMT "rphy=%p release=%p\n",
|
dsaswideprintk(ioc, printk(MYIOC_s_DEBUG_FMT "rphy=%p release=%p\n",
|
||||||
ioc->name, rphy, rphy->dev.release));
|
ioc->name, rphy, rphy->dev.release));
|
||||||
}
|
}
|
||||||
|
@ -341,8 +341,8 @@ mptsas_set_port(MPT_ADAPTER *ioc, struct mptsas_phyinfo *phy_info, struct sas_po
|
||||||
phy_info->port_details->port = port;
|
phy_info->port_details->port = port;
|
||||||
|
|
||||||
if (port) {
|
if (port) {
|
||||||
dsaswideprintk(ioc, dev_printk(MYIOC_s_DEBUG_FMT,
|
dsaswideprintk(ioc, dev_printk(KERN_DEBUG,
|
||||||
&port->dev, "add:", ioc->name));
|
&port->dev, MYIOC_s_FMT "add:", ioc->name));
|
||||||
dsaswideprintk(ioc, printk(MYIOC_s_DEBUG_FMT "port=%p release=%p\n",
|
dsaswideprintk(ioc, printk(MYIOC_s_DEBUG_FMT "port=%p release=%p\n",
|
||||||
ioc->name, port, port->dev.release));
|
ioc->name, port, port->dev.release));
|
||||||
}
|
}
|
||||||
|
@ -2296,8 +2296,9 @@ mptsas_delete_expander_phys(MPT_ADAPTER *ioc)
|
||||||
expander_sas_address)
|
expander_sas_address)
|
||||||
continue;
|
continue;
|
||||||
dsaswideprintk(ioc,
|
dsaswideprintk(ioc,
|
||||||
dev_printk(MYIOC_s_DEBUG_FMT, &port->dev,
|
dev_printk(KERN_DEBUG, &port->dev,
|
||||||
"delete port (%d)\n", ioc->name, port->port_identifier));
|
MYIOC_s_FMT "delete port (%d)\n", ioc->name,
|
||||||
|
port->port_identifier));
|
||||||
sas_port_delete(port);
|
sas_port_delete(port);
|
||||||
mptsas_port_delete(ioc, phy_info->port_details);
|
mptsas_port_delete(ioc, phy_info->port_details);
|
||||||
}
|
}
|
||||||
|
@ -2681,7 +2682,7 @@ mptsas_hotplug_work(struct work_struct *work)
|
||||||
printk(MYIOC_s_INFO_FMT
|
printk(MYIOC_s_INFO_FMT
|
||||||
"removing %s device, channel %d, id %d, phy %d\n",
|
"removing %s device, channel %d, id %d, phy %d\n",
|
||||||
ioc->name, ds, ev->channel, ev->id, phy_info->phy_id);
|
ioc->name, ds, ev->channel, ev->id, phy_info->phy_id);
|
||||||
dev_printk(MYIOC_s_DEBUG_FMT, &port->dev,
|
dev_printk(KERN_DEBUG, &port->dev, MYIOC_s_FMT
|
||||||
"delete port (%d)\n", ioc->name, port->port_identifier);
|
"delete port (%d)\n", ioc->name, port->port_identifier);
|
||||||
sas_port_delete(port);
|
sas_port_delete(port);
|
||||||
mptsas_port_delete(ioc, phy_info->port_details);
|
mptsas_port_delete(ioc, phy_info->port_details);
|
||||||
|
|
|
@ -992,7 +992,7 @@ mptscsih_flush_running_cmds(MPT_SCSI_HOST *hd)
|
||||||
scsi_dma_unmap(sc);
|
scsi_dma_unmap(sc);
|
||||||
sc->result = DID_RESET << 16;
|
sc->result = DID_RESET << 16;
|
||||||
sc->host_scribble = NULL;
|
sc->host_scribble = NULL;
|
||||||
sdev_printk(MYIOC_s_INFO_FMT, sc->device,
|
sdev_printk(KERN_INFO, sc->device, MYIOC_s_FMT
|
||||||
"completing cmds: fw_channel %d, fw_id %d, sc=%p,"
|
"completing cmds: fw_channel %d, fw_id %d, sc=%p,"
|
||||||
" mf = %p, idx=%x\n", ioc->name, channel, id, sc, mf, ii);
|
" mf = %p, idx=%x\n", ioc->name, channel, id, sc, mf, ii);
|
||||||
sc->scsi_done(sc);
|
sc->scsi_done(sc);
|
||||||
|
@ -1053,7 +1053,7 @@ mptscsih_search_running_cmds(MPT_SCSI_HOST *hd, VirtDevice *vdevice)
|
||||||
scsi_dma_unmap(sc);
|
scsi_dma_unmap(sc);
|
||||||
sc->host_scribble = NULL;
|
sc->host_scribble = NULL;
|
||||||
sc->result = DID_NO_CONNECT << 16;
|
sc->result = DID_NO_CONNECT << 16;
|
||||||
sdev_printk(MYIOC_s_INFO_FMT, sc->device, "completing cmds: fw_channel %d,"
|
sdev_printk(KERN_INFO, sc->device, MYIOC_s_FMT "completing cmds: fw_channel %d,"
|
||||||
"fw_id %d, sc=%p, mf = %p, idx=%x\n", ioc->name, vdevice->vtarget->channel,
|
"fw_id %d, sc=%p, mf = %p, idx=%x\n", ioc->name, vdevice->vtarget->channel,
|
||||||
vdevice->vtarget->id, sc, mf, ii);
|
vdevice->vtarget->id, sc, mf, ii);
|
||||||
sc->scsi_done(sc);
|
sc->scsi_done(sc);
|
||||||
|
|
|
@ -537,7 +537,7 @@ static int mptspi_read_spi_device_pg0(struct scsi_target *starget,
|
||||||
|
|
||||||
spi_dev_pg0 = dma_alloc_coherent(&ioc->pcidev->dev, size, &spi_dev_pg0_dma, GFP_KERNEL);
|
spi_dev_pg0 = dma_alloc_coherent(&ioc->pcidev->dev, size, &spi_dev_pg0_dma, GFP_KERNEL);
|
||||||
if (spi_dev_pg0 == NULL) {
|
if (spi_dev_pg0 == NULL) {
|
||||||
starget_printk(MYIOC_s_ERR_FMT, starget,
|
starget_printk(KERN_ERR, starget, MYIOC_s_FMT
|
||||||
"dma_alloc_coherent for parameters failed\n", ioc->name);
|
"dma_alloc_coherent for parameters failed\n", ioc->name);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -558,7 +558,7 @@ static int mptspi_read_spi_device_pg0(struct scsi_target *starget,
|
||||||
cfg.pageAddr = starget->id;
|
cfg.pageAddr = starget->id;
|
||||||
|
|
||||||
if (mpt_config(ioc, &cfg)) {
|
if (mpt_config(ioc, &cfg)) {
|
||||||
starget_printk(MYIOC_s_ERR_FMT, starget, "mpt_config failed\n", ioc->name);
|
starget_printk(KERN_ERR, starget, MYIOC_s_FMT "mpt_config failed\n", ioc->name);
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
err = 0;
|
err = 0;
|
||||||
|
@ -681,7 +681,7 @@ static void mptspi_dv_device(struct _MPT_SCSI_HOST *hd,
|
||||||
/* If this is a piece of a RAID, then quiesce first */
|
/* If this is a piece of a RAID, then quiesce first */
|
||||||
if (sdev->channel == 1 &&
|
if (sdev->channel == 1 &&
|
||||||
mptscsih_quiesce_raid(hd, 1, vtarget->channel, vtarget->id) < 0) {
|
mptscsih_quiesce_raid(hd, 1, vtarget->channel, vtarget->id) < 0) {
|
||||||
starget_printk(MYIOC_s_ERR_FMT, scsi_target(sdev),
|
starget_printk(KERN_ERR, scsi_target(sdev), MYIOC_s_FMT
|
||||||
"Integrated RAID quiesce failed\n", ioc->name);
|
"Integrated RAID quiesce failed\n", ioc->name);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -692,7 +692,7 @@ static void mptspi_dv_device(struct _MPT_SCSI_HOST *hd,
|
||||||
|
|
||||||
if (sdev->channel == 1 &&
|
if (sdev->channel == 1 &&
|
||||||
mptscsih_quiesce_raid(hd, 0, vtarget->channel, vtarget->id) < 0)
|
mptscsih_quiesce_raid(hd, 0, vtarget->channel, vtarget->id) < 0)
|
||||||
starget_printk(MYIOC_s_ERR_FMT, scsi_target(sdev),
|
starget_printk(KERN_ERR, scsi_target(sdev), MYIOC_s_FMT
|
||||||
"Integrated RAID resume failed\n", ioc->name);
|
"Integrated RAID resume failed\n", ioc->name);
|
||||||
|
|
||||||
mptspi_read_parameters(sdev->sdev_target);
|
mptspi_read_parameters(sdev->sdev_target);
|
||||||
|
@ -856,7 +856,7 @@ static int mptspi_write_spi_device_pg1(struct scsi_target *starget,
|
||||||
|
|
||||||
pg1 = dma_alloc_coherent(&ioc->pcidev->dev, size, &pg1_dma, GFP_KERNEL);
|
pg1 = dma_alloc_coherent(&ioc->pcidev->dev, size, &pg1_dma, GFP_KERNEL);
|
||||||
if (pg1 == NULL) {
|
if (pg1 == NULL) {
|
||||||
starget_printk(MYIOC_s_ERR_FMT, starget,
|
starget_printk(KERN_ERR, starget, MYIOC_s_FMT
|
||||||
"dma_alloc_coherent for parameters failed\n", ioc->name);
|
"dma_alloc_coherent for parameters failed\n", ioc->name);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -886,7 +886,7 @@ static int mptspi_write_spi_device_pg1(struct scsi_target *starget,
|
||||||
mptspi_print_write_nego(hd, starget, le32_to_cpu(pg1->RequestedParameters));
|
mptspi_print_write_nego(hd, starget, le32_to_cpu(pg1->RequestedParameters));
|
||||||
|
|
||||||
if (mpt_config(ioc, &cfg)) {
|
if (mpt_config(ioc, &cfg)) {
|
||||||
starget_printk(MYIOC_s_ERR_FMT, starget,
|
starget_printk(KERN_ERR, starget, MYIOC_s_FMT
|
||||||
"mpt_config failed\n", ioc->name);
|
"mpt_config failed\n", ioc->name);
|
||||||
goto out_free;
|
goto out_free;
|
||||||
}
|
}
|
||||||
|
@ -1104,11 +1104,11 @@ static void mpt_work_wrapper(struct work_struct *work)
|
||||||
if(vtarget->id != disk)
|
if(vtarget->id != disk)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
starget_printk(MYIOC_s_INFO_FMT, vtarget->starget,
|
starget_printk(KERN_INFO, vtarget->starget, MYIOC_s_FMT
|
||||||
"Integrated RAID requests DV of new device\n", ioc->name);
|
"Integrated RAID requests DV of new device\n", ioc->name);
|
||||||
mptspi_dv_device(hd, sdev);
|
mptspi_dv_device(hd, sdev);
|
||||||
}
|
}
|
||||||
shost_printk(MYIOC_s_INFO_FMT, shost,
|
shost_printk(KERN_INFO, shost, MYIOC_s_FMT
|
||||||
"Integrated RAID detects new device %d\n", ioc->name, disk);
|
"Integrated RAID detects new device %d\n", ioc->name, disk);
|
||||||
scsi_scan_target(&ioc->sh->shost_gendev, 1, disk, 0, 1);
|
scsi_scan_target(&ioc->sh->shost_gendev, 1, disk, 0, 1);
|
||||||
}
|
}
|
||||||
|
@ -1120,7 +1120,7 @@ static void mpt_dv_raid(struct _MPT_SCSI_HOST *hd, int disk)
|
||||||
MPT_ADAPTER *ioc = hd->ioc;
|
MPT_ADAPTER *ioc = hd->ioc;
|
||||||
|
|
||||||
if (!wqw) {
|
if (!wqw) {
|
||||||
shost_printk(MYIOC_s_ERR_FMT, ioc->sh,
|
shost_printk(KERN_ERR, ioc->sh, MYIOC_s_FMT
|
||||||
"Failed to act on RAID event for physical disk %d\n",
|
"Failed to act on RAID event for physical disk %d\n",
|
||||||
ioc->name, disk);
|
ioc->name, disk);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Reference in a new issue