You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[SCSI] use sfoo_printk() in drivers
Rejections fixed up and Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
committed by
James Bottomley
parent
3bf743e7c8
commit
017560fca4
+15
-17
@@ -726,8 +726,7 @@ static int u14_34f_slave_configure(struct scsi_device *dev) {
|
||||
else
|
||||
link_suffix = "";
|
||||
|
||||
printk("%s: scsi%d, channel %d, id %d, lun %d, cmds/lun %d%s%s.\n",
|
||||
BN(j), host->host_no, dev->channel, dev->id, dev->lun,
|
||||
sdev_printk(KERN_INFO, dev, "cmds/lun %d%s%s.\n",
|
||||
dev->queue_depth, link_suffix, tag_suffix);
|
||||
|
||||
return FALSE;
|
||||
@@ -1319,8 +1318,8 @@ static int u14_34f_queuecommand(struct scsi_cmnd *SCpnt, void (*done)(struct scs
|
||||
if (wait_on_busy(sh[j]->io_port, MAXLOOP)) {
|
||||
unmap_dma(i, j);
|
||||
SCpnt->host_scribble = NULL;
|
||||
printk("%s: qcomm, target %d.%d:%d, pid %ld, adapter busy.\n",
|
||||
BN(j), SCpnt->device->channel, SCpnt->device->id, SCpnt->device->lun, SCpnt->pid);
|
||||
scmd_printk(KERN_INFO, SCpnt,
|
||||
"qcomm, pid %ld, adapter busy.\n", SCpnt->pid);
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -1340,14 +1339,14 @@ static int u14_34f_eh_abort(struct scsi_cmnd *SCarg) {
|
||||
j = ((struct hostdata *) SCarg->device->host->hostdata)->board_number;
|
||||
|
||||
if (SCarg->host_scribble == NULL) {
|
||||
printk("%s: abort, target %d.%d:%d, pid %ld inactive.\n",
|
||||
BN(j), SCarg->device->channel, SCarg->device->id, SCarg->device->lun, SCarg->pid);
|
||||
scmd_printk(KERN_INFO, SCarg, "abort, pid %ld inactive.\n",
|
||||
SCarg->pid);
|
||||
return SUCCESS;
|
||||
}
|
||||
|
||||
i = *(unsigned int *)SCarg->host_scribble;
|
||||
printk("%s: abort, mbox %d, target %d.%d:%d, pid %ld.\n",
|
||||
BN(j), i, SCarg->device->channel, SCarg->device->id, SCarg->device->lun, SCarg->pid);
|
||||
scmd_printk(KERN_INFO, SCarg, "abort, mbox %d, pid %ld.\n",
|
||||
i, SCarg->pid);
|
||||
|
||||
if (i >= sh[j]->can_queue)
|
||||
panic("%s: abort, invalid SCarg->host_scribble.\n", BN(j));
|
||||
@@ -1405,8 +1404,7 @@ static int u14_34f_eh_host_reset(struct scsi_cmnd *SCarg) {
|
||||
struct scsi_cmnd *SCpnt;
|
||||
|
||||
j = ((struct hostdata *) SCarg->device->host->hostdata)->board_number;
|
||||
printk("%s: reset, enter, target %d.%d:%d, pid %ld.\n",
|
||||
BN(j), SCarg->device->channel, SCarg->device->id, SCarg->device->lun, SCarg->pid);
|
||||
scmd_printk(KERN_INFO, SCarg, "reset, enter, pid %ld.\n", SCarg->pid);
|
||||
|
||||
spin_lock_irq(sh[j]->host_lock);
|
||||
|
||||
@@ -1709,9 +1707,10 @@ static void flush_dev(struct scsi_device *dev, unsigned long cursec, unsigned in
|
||||
k = il[n]; cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
|
||||
|
||||
if (wait_on_busy(sh[j]->io_port, MAXLOOP)) {
|
||||
printk("%s: %s, target %d.%d:%d, pid %ld, mbox %d, adapter"\
|
||||
" busy, will abort.\n", BN(j), (ihdlr ? "ihdlr" : "qcomm"),
|
||||
SCpnt->device->channel, SCpnt->device->id, SCpnt->device->lun, SCpnt->pid, k);
|
||||
scmd_printk(KERN_INFO, SCpnt,
|
||||
"%s, pid %ld, mbox %d, adapter"
|
||||
" busy, will abort.\n", (ihdlr ? "ihdlr" : "qcomm"),
|
||||
SCpnt->pid, k);
|
||||
HD(j)->cp_stat[k] = ABORTING;
|
||||
continue;
|
||||
}
|
||||
@@ -1914,10 +1913,9 @@ static irqreturn_t ihdlr(int irq, unsigned int j) {
|
||||
spp->adapter_status != ASST && HD(j)->iocount <= 1000) ||
|
||||
do_trace || msg_byte(spp->target_status))
|
||||
#endif
|
||||
printk("%s: ihdlr, mbox %2d, err 0x%x:%x,"\
|
||||
" target %d.%d:%d, pid %ld, reg 0x%x, count %d.\n",
|
||||
BN(j), i, spp->adapter_status, spp->target_status,
|
||||
SCpnt->device->channel, SCpnt->device->id, SCpnt->device->lun, SCpnt->pid,
|
||||
scmd_printk(KERN_INFO, SCpnt, "ihdlr, mbox %2d, err 0x%x:%x,"\
|
||||
" pid %ld, reg 0x%x, count %d.\n",
|
||||
i, spp->adapter_status, spp->target_status, SCpnt->pid,
|
||||
reg, HD(j)->iocount);
|
||||
|
||||
unmap_dma(i, j);
|
||||
|
||||
Reference in New Issue
Block a user