mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 10:00:17 +00:00
scsi: core: Avoid printing an error if target_alloc() returns -ENXIO
[ Upstream commit 70edd2e6f6 ]
Avoid printing a 'target allocation failed' error if the driver
target_alloc() callback function returns -ENXIO. This return value
indicates that the corresponding H:C:T:L entry is empty.
Removing this error reduces the scan time if the user issues SCAN_WILD_CARD
scan operation through sysfs parameter on a host with a lot of empty
H:C:T:L entries.
Avoiding the printk on -ENXIO matches the behavior of the other callback
functions during scanning.
Link: https://lore.kernel.org/r/20210726115402.1936-1-sreekanth.reddy@broadcom.com
Signed-off-by: Sreekanth Reddy <sreekanth.reddy@broadcom.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Sasha Levin
parent
4f78db7df6
commit
8071dbe1bd
@@ -453,7 +453,8 @@ static struct scsi_target *scsi_alloc_target(struct device *parent,
|
|||||||
error = shost->hostt->target_alloc(starget);
|
error = shost->hostt->target_alloc(starget);
|
||||||
|
|
||||||
if(error) {
|
if(error) {
|
||||||
dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
|
if (error != -ENXIO)
|
||||||
|
dev_err(dev, "target allocation failed, error %d\n", error);
|
||||||
/* don't want scsi_target_reap to do the final
|
/* don't want scsi_target_reap to do the final
|
||||||
* put because it will be under the host lock */
|
* put because it will be under the host lock */
|
||||||
scsi_target_destroy(starget);
|
scsi_target_destroy(starget);
|
||||||
|
|||||||
Reference in New Issue
Block a user