mirror of https://gitee.com/openkylin/linux.git
scsi: mpt3sas: Fix for improper info displayed in var log, while blocking or unblocking the device.
Return value and Device_handle Arguments passed in correct order to match with its format string. Signed-off-by: Chaitra P B <chaitra.basappa@broadcom.com> Signed-off-by: Sathya Prakash <sathya.prakash@broadcom.com> Signed-off-by: Suganath Prabu S <suganath-prabu.subramani@broadcom.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
f46e7cd36b
commit
b2fe6be798
|
@ -2837,7 +2837,7 @@ _scsih_internal_device_block(struct scsi_device *sdev,
|
|||
if (r == -EINVAL)
|
||||
sdev_printk(KERN_WARNING, sdev,
|
||||
"device_block failed with return(%d) for handle(0x%04x)\n",
|
||||
sas_device_priv_data->sas_target->handle, r);
|
||||
r, sas_device_priv_data->sas_target->handle);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2867,20 +2867,20 @@ _scsih_internal_device_unblock(struct scsi_device *sdev,
|
|||
sdev_printk(KERN_WARNING, sdev,
|
||||
"device_unblock failed with return(%d) for handle(0x%04x) "
|
||||
"performing a block followed by an unblock\n",
|
||||
sas_device_priv_data->sas_target->handle, r);
|
||||
r, sas_device_priv_data->sas_target->handle);
|
||||
sas_device_priv_data->block = 1;
|
||||
r = scsi_internal_device_block(sdev);
|
||||
if (r)
|
||||
sdev_printk(KERN_WARNING, sdev, "retried device_block "
|
||||
"failed with return(%d) for handle(0x%04x)\n",
|
||||
sas_device_priv_data->sas_target->handle, r);
|
||||
r, sas_device_priv_data->sas_target->handle);
|
||||
|
||||
sas_device_priv_data->block = 0;
|
||||
r = scsi_internal_device_unblock(sdev, SDEV_RUNNING);
|
||||
if (r)
|
||||
sdev_printk(KERN_WARNING, sdev, "retried device_unblock"
|
||||
" failed with return(%d) for handle(0x%04x)\n",
|
||||
sas_device_priv_data->sas_target->handle, r);
|
||||
r, sas_device_priv_data->sas_target->handle);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue