lkml.org 
[lkml]   [2021]   [Aug]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] scsi: sd: Do not exit sd_spinup_disk quietly
From
Date
On 8/16/21 2:37 AM, Christian Löhle wrote:
> The sd_spinup_disk function logs what is happening nicely.
> Unfortunately this output stops if the media was marked removed
> in the meantime. To prevent a puzzling output, add a print
> for this case, too.
>
> Signed-off-by: Christian Loehle <cloehle@hyperstone.com>
> ---
> drivers/scsi/sd.c | 4 +++-
> 1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
> index b8d55af763f9..7e556f5b57e0 100644
> --- a/drivers/scsi/sd.c
> +++ b/drivers/scsi/sd.c
> @@ -2180,8 +2180,10 @@ sd_spinup_disk(struct scsi_disk *sdkp)
> * doesn't have any media in it, don't bother
> * with any more polling.
> */
> - if (media_not_present(sdkp, &sshdr))
> + if (media_not_present(sdkp, &sshdr)) {
> + sd_printk(KERN_NOTICE, sdkp, "Media removed, stopped polling\n");
> return;
> + }
>
> if (the_result)
> sense_valid = scsi_sense_valid(&sshdr);
>

Reviewed-by: Bart Van Assche <bvanassche@acm.org>

\
 
 \ /
  Last update: 2021-08-17 05:16    [W:0.089 / U:0.136 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site