diff options
author | Christoph Hellwig <[email protected]> | 2022-04-18 06:53:11 +0200 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2022-05-03 10:38:50 -0600 |
commit | 4418bfd8fb9602d9cd8747c3ad52fdbaa02e2ffd (patch) | |
tree | 3d14f9baee9df8a70c8134efc7c23231d31dfd96 | |
parent | c3f765299632727fa5ea5a0acf118665227a4f1a (diff) |
loop: remove a spurious clear of discard_alignment
The loop driver never sets a discard_alignment, so it also doens't need
to clear it to zero.
Signed-off-by: Christoph Hellwig <[email protected]>
Reviewed-by: Damien Le Moal <[email protected]>
Reviewed-by: Chaitanya Kulkarni <[email protected]>
Reviewed-by: Martin K. Petersen <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/block/loop.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/block/loop.c b/drivers/block/loop.c index 0c7f0367200c..322d92f958ea 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c @@ -798,7 +798,6 @@ static void loop_config_discard(struct loop_device *lo) blk_queue_max_discard_sectors(q, 0); blk_queue_max_write_zeroes_sectors(q, 0); } - q->limits.discard_alignment = 0; } struct loop_worker { |