]> git.baikalelectronics.ru Git - kernel.git/commit
scsi: core: Avoid printing an error if target_alloc() returns -ENXIO
authorSreekanth Reddy <sreekanth.reddy@broadcom.com>
Mon, 26 Jul 2021 11:54:02 +0000 (17:24 +0530)
committerMartin K. Petersen <martin.petersen@oracle.com>
Fri, 30 Jul 2021 01:58:35 +0000 (21:58 -0400)
commit036ea072e06605475036670165d4a3a15207ce79
treec6727aa3e8092b29222b91c2b8762333212b818d
parent5bf0620cd96e7ca97fe4685d6f42b640132f8281
scsi: core: Avoid printing an error if target_alloc() returns -ENXIO

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>
drivers/scsi/scsi_scan.c