From: Christoph Hellwig Date: Tue, 21 May 2024 20:13:48 +0000 (-0700) Subject: sd: simplify the disable case in sd_config_discard X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=fbf54d0fa9bc2306f2cfd985aa66508f458e3706;p=users%2Fhch%2Fblock.git sd: simplify the disable case in sd_config_discard Fall through to the main call to blk_queue_max_discard_sectors given that max_blocks has been initialized to zero above instead of duplicating the call. Signed-off-by: Christoph Hellwig Reviewed-by: Bart Van Assche Reviewed-by: Damien Le Moal Reviewed-by: Martin K. Petersen --- diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c index d8d3a660458f..d73142539173 100644 --- a/drivers/scsi/sd.c +++ b/drivers/scsi/sd.c @@ -844,8 +844,7 @@ static void sd_config_discard(struct scsi_disk *sdkp, unsigned int mode) case SD_LBP_FULL: case SD_LBP_DISABLE: - blk_queue_max_discard_sectors(q, 0); - return; + break; case SD_LBP_UNMAP: max_blocks = min_not_zero(sdkp->max_unmap_blocks,