One statement was missing from the conversion to dev_printk(). Signed-off-by: Hannes Reinecke <hare@xxxxxxx> --- drivers/scsi/scsi.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c index 92d5912..9880b59 100644 --- a/drivers/scsi/scsi.c +++ b/drivers/scsi/scsi.c @@ -541,10 +541,12 @@ void scsi_log_send(struct scsi_cmnd *cmd) "Send: scmd 0x%p\n", cmd); scsi_print_command(cmd); if (level > 3) { - printk(KERN_INFO "buffer = 0x%p, bufflen = %d," - " queuecommand 0x%p\n", - scsi_sglist(cmd), scsi_bufflen(cmd), - cmd->device->host->hostt->queuecommand); + struct Scsi_Host *shost = cmd->device->host; + scmd_printk(KERN_INFO, cmd, + "buffer = 0x%p, bufflen = %d," + " queuecommand 0x%p\n", + scsi_sglist(cmd), scsi_bufflen(cmd), + shost->hostt->queuecommand); } } -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html