From: Martin K. Petersen Date: Sat, 23 May 2009 15:45:07 +0000 (-0400) Subject: [SCSI] Print failed commands X-Git-Tag: v2.6.32-rc1~689^2~206 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=002b1eb2c03ccec36bf6e7b719cccedf57d83402;p=linux-block.git [SCSI] Print failed commands When a request fails we print the sense data but not the actual command that failed. Add a printout of the operation + CDB for failed commands. Signed-off-by: Martin K. Petersen Signed-off-by: James Bottomley Signed-off-by: James Bottomley --- diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c index f3c40898fc7d..662024d86949 100644 --- a/drivers/scsi/scsi_lib.c +++ b/drivers/scsi/scsi_lib.c @@ -896,6 +896,7 @@ void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes) scsi_print_result(cmd); if (driver_byte(result) & DRIVER_SENSE) scsi_print_sense("", cmd); + scsi_print_command(cmd); } blk_end_request_all(req, -EIO); scsi_next_command(cmd);