diff mbox series

[resend] loop: don't update discard limits from loop_set_status

Message ID 20231227082020.249427-1-hch@lst.de (mailing list archive)
State New, archived
Headers show
Series [resend] loop: don't update discard limits from loop_set_status | expand

Commit Message

Christoph Hellwig Dec. 27, 2023, 8:20 a.m. UTC
loop_set_status doesn't change anything relevant to the discard and
write_zeroes setting, so don't bother calling loop_config_discard.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---

Resend without the other patch from the previous series

 drivers/block/loop.c | 2 --
 1 file changed, 2 deletions(-)

Comments

Jens Axboe Dec. 27, 2023, 5:46 p.m. UTC | #1
On Wed, 27 Dec 2023 08:20:20 +0000, Christoph Hellwig wrote:
> loop_set_status doesn't change anything relevant to the discard and
> write_zeroes setting, so don't bother calling loop_config_discard.
> 
> 

Applied, thanks!

[1/1] loop: don't update discard limits from loop_set_status
      commit: 34c7db44b4edccda315edcf02b9669aa173e090b

Best regards,
diff mbox series

Patch

diff --git a/drivers/block/loop.c b/drivers/block/loop.c
index 371a318e691d02..794bc92da165c3 100644
--- a/drivers/block/loop.c
+++ b/drivers/block/loop.c
@@ -1303,8 +1303,6 @@  loop_set_status(struct loop_device *lo, const struct loop_info64 *info)
 		loop_set_size(lo, new_size);
 	}
 
-	loop_config_discard(lo);
-
 	/* update dio if lo_offset or transfer is changed */
 	__loop_update_dio(lo, lo->use_dio);