Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1034681AbdD1Huh (ORCPT ); Fri, 28 Apr 2017 03:50:37 -0400 Received: from mail-pg0-f65.google.com ([74.125.83.65]:33824 "EHLO mail-pg0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S938502AbdD1HuX (ORCPT ); Fri, 28 Apr 2017 03:50:23 -0400 From: Peng Tao To: linux-scsi@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Peng Tao , "James E.J. Bottomley" , "Martin K. Petersen" Subject: [PATCH RFC] scsi: wait sd probing in manual scan Date: Fri, 28 Apr 2017 15:48:19 +0800 Message-Id: <1493365699-25566-1-git-send-email-bergwolf@gmail.com> X-Mailer: git-send-email 1.8.3.1 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1890 Lines: 49 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->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->sdev_gendev)) + async_synchronize_full_domain(&scsi_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->sdev_gendev)) + async_synchronize_full_domain(&scsi_sd_probe_domain); + out_free_result: kfree(result); out_free_sdev: -- 2.7.4