mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
isci: Remove excessive log noise with expander hot-unplug
We are logging excessive output when hot unplug from expander. Moving that to debug. Signed-off-by: Dave Jiang <dave.jiang@intel.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
This commit is contained in:
parent
d37ee7e89a
commit
d2d61433a8
1 changed files with 8 additions and 7 deletions
|
@ -183,13 +183,14 @@ int isci_task_execute_task(struct sas_task *task, int num, gfp_t gfp_flags)
|
|||
if (device_status != isci_ready_for_io) {
|
||||
|
||||
/* Forces a retry from scsi mid layer. */
|
||||
dev_warn(&ihost->pdev->dev,
|
||||
"%s: task %p: isci_host->status = %d, "
|
||||
"device = %p; device_status = 0x%x\n\n",
|
||||
__func__,
|
||||
task,
|
||||
isci_host_get_state(ihost),
|
||||
device, device_status);
|
||||
dev_dbg(&ihost->pdev->dev,
|
||||
"%s: task %p: isci_host->status = %d, "
|
||||
"device = %p; device_status = 0x%x\n\n",
|
||||
__func__,
|
||||
task,
|
||||
isci_host_get_state(ihost),
|
||||
device,
|
||||
device_status);
|
||||
|
||||
if (device_status == isci_ready) {
|
||||
/* Indicate QUEUE_FULL so that the scsi midlayer
|
||||
|
|
Loading…
Reference in a new issue