[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20171002135225.GF19119@infradead.org>
Date: Mon, 2 Oct 2017 06:52:25 -0700
From: Christoph Hellwig <hch@...radead.org>
To: Ming Lei <ming.lei@...hat.com>
Cc: Jens Axboe <axboe@...com>, linux-block@...r.kernel.org,
Christoph Hellwig <hch@...radead.org>,
linux-scsi@...r.kernel.org,
"Martin K . Petersen" <martin.petersen@...cle.com>,
"James E . J . Bottomley" <jejb@...ux.vnet.ibm.com>,
Bart Van Assche <bart.vanassche@...disk.com>,
Oleksandr Natalenko <oleksandr@...alenko.name>,
Johannes Thumshirn <jthumshirn@...e.de>,
Cathy Avery <cavery@...hat.com>,
Martin Steigerwald <martin@...htvoll.de>,
linux-kernel@...r.kernel.org, Hannes Reinecke <hare@...e.com>,
stable@...r.kernel.org, Bart Van Assche <Bart.VanAssche@....com>
Subject: Re: [PATCH V7 6/6] SCSI: set block queue at preempt only when SCSI
device is put into quiesce
> + /*
> + * Simply quiesing SCSI device isn't safe, it is easy
> + * to use up requests because all these allocated requests
> + * can't be dispatched when device is put in QIUESCE.
> + * Then no request can be allocated and we may hang
> + * somewhere, such as system suspend/resume.
> + *
> + * So we set block queue in preempt only first, no new
> + * normal request can enter queue any more, and all pending
> + * requests are drained once blk_set_preempt_only()
> + * returns. Only RQF_PREEMPT is allowed in preempt only mode.
> + */
> + blk_set_preempt_only(sdev->request_queue, true);
> +
> mutex_lock(&sdev->state_mutex);
> err = scsi_device_set_state(sdev, SDEV_QUIESCE);
Why is this not under state_mutex so that we guarantee it's atomic
vs sdev state changes?
> @@ -2964,6 +2981,8 @@ void scsi_device_resume(struct scsi_device *sdev)
> scsi_device_set_state(sdev, SDEV_RUNNING) == 0)
> scsi_run_queue(sdev->request_queue);
> mutex_unlock(&sdev->state_mutex);
> +
> + blk_set_preempt_only(sdev->request_queue, false);
Same here.
Powered by blists - more mailing lists