Re: [PATCH RFC] scsi: wait sd probing in manual scan

2017-05-03 Thread Bart Van Assche
On Fri, 2017-04-28 at 15:48 +0800, Peng Tao wrote:
> We have a guest init programe trying to mount a device after doing scsi host 
> scan
> at boot time. Occasionally it fails to find the device when mounting. After 
> digging
> a bit, it seems the root cause is sd async_schedule probing.
> 
> With async probing, there is no guarantee of device readiness when scsi host
> scan finishes. However, users do expect to have a valid way to make sure 
> device
> is usable. Change scsi scan to wait sd probing in manual scan case so that we
> don't leave user with random device state when scsi host scan returns.
> 
> Is this the right way to have such guarantee?

Hello Peng,

Please fix the guest init program such that it waits until the SCSI device
it needs is ready.

Thanks,

Bart.

[PATCH RFC] scsi: wait sd probing in manual scan

2017-04-28 Thread Peng Tao
We have a guest init programe trying to mount a device after doing scsi host 
scan
at boot time. Occasionally it fails to find the device when mounting. After 
digging
a bit, it seems the root cause is sd async_schedule probing.

With async probing, there is no guarantee of device readiness when scsi host
scan finishes. However, users do expect to have a valid way to make sure device
is usable. Change scsi scan to wait sd probing in manual scan case so that we
don't leave user with random device state when scsi host scan returns.

Is this the right way to have such guarantee?

CC: "James E.J. Bottomley" 
CC: "Martin K. Petersen" 
Signed-off-by: Peng Tao 
---
 drivers/scsi/scsi_scan.c | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c
index 6f7128f..0208f40 100644
--- a/drivers/scsi/scsi_scan.c
+++ b/drivers/scsi/scsi_scan.c
@@ -1077,6 +1077,11 @@ static int scsi_probe_and_add_lun(struct scsi_target 
*starget,
SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
"scsi scan: device exists on %s\n",
dev_name(>sdev_gendev)));
+   /* sd probing uses async_schedule.  Wait until it 
finishes if this
+* is a user requested rescan.
+*/
+   if (rescan == SCSI_SCAN_MANUAL && 
scsi_is_sdev_device(>sdev_gendev))
+   
async_synchronize_full_domain(_sd_probe_domain);
if (sdevp)
*sdevp = sdev;
else
@@ -1176,6 +1181,12 @@ static int scsi_probe_and_add_lun(struct scsi_target 
*starget,
}
}

+   /* sd probing uses async_schedule.  Wait until it finishes if this
+* is a user requested rescan.
+*/
+   if (rescan == SCSI_SCAN_MANUAL && 
scsi_is_sdev_device(>sdev_gendev))
+   async_synchronize_full_domain(_sd_probe_domain);
+
  out_free_result:
kfree(result);
  out_free_sdev:
-- 
2.7.4