[SCSI] Improve error message when offlining a device
The current code prints: scsi 13:0:4:0: scsi: Device offlined - not ready after error recovery which is repetitively redundant. This patch changes that message to: scsi 6:0:6:0: Device offlined - not ready after error recovery Signed-off-by: Matthew Wilcox <matthew@wil.cx> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
Родитель
7c07d613d2
Коммит
31765d7d3d
|
@ -1137,9 +1137,8 @@ static void scsi_eh_offline_sdevs(struct list_head *work_q,
|
|||
struct scsi_cmnd *scmd, *next;
|
||||
|
||||
list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
|
||||
sdev_printk(KERN_INFO, scmd->device,
|
||||
"scsi: Device offlined - not"
|
||||
" ready after error recovery\n");
|
||||
sdev_printk(KERN_INFO, scmd->device, "Device offlined - "
|
||||
"not ready after error recovery\n");
|
||||
scsi_device_set_state(scmd->device, SDEV_OFFLINE);
|
||||
if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD) {
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче