diff options
Diffstat (limited to 'drivers/scsi/libsas/sas_scsi_host.c')
| -rw-r--r-- | drivers/scsi/libsas/sas_scsi_host.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/scsi/libsas/sas_scsi_host.c b/drivers/scsi/libsas/sas_scsi_host.c index ceab5e5c41c2..33229348dcb6 100644 --- a/drivers/scsi/libsas/sas_scsi_host.c +++ b/drivers/scsi/libsas/sas_scsi_host.c @@ -759,7 +759,7 @@ retry:  	spin_unlock_irq(shost->host_lock);  	SAS_DPRINTK("Enter %s busy: %d failed: %d\n", -		    __func__, atomic_read(&shost->host_busy), shost->host_failed); +		    __func__, scsi_host_busy(shost), shost->host_failed);  	/*  	 * Deal with commands that still have SAS tasks (i.e. they didn't  	 * complete via the normal sas_task completion mechanism), @@ -801,7 +801,7 @@ out:  		goto retry;  	SAS_DPRINTK("--- Exit %s: busy: %d failed: %d tries: %d\n", -		    __func__, atomic_read(&shost->host_busy), +		    __func__, scsi_host_busy(shost),  		    shost->host_failed, tries);  } |