40 lines
1.4 KiB
Diff
40 lines
1.4 KiB
Diff
|
From 3672388dc75cbcdb5f3821b5f4354b55333004f5 Mon Sep 17 00:00:00 2001
|
||
|
From: Christoph Hellwig <hch@lst.de>
|
||
|
Date: Wed, 6 Mar 2024 15:03:30 +0100
|
||
|
Subject: [PATCH 13/32] drbd: don't set max_write_zeroes_sectors in
|
||
|
decide_on_discard_support
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
fixup_write_zeroes always overrides the max_write_zeroes_sectors value
|
||
|
a little further down the callchain, so don't bother to setup a limit
|
||
|
in decide_on_discard_support.
|
||
|
|
||
|
Signed-off-by: Christoph Hellwig <hch@lst.de>
|
||
|
Reviewed-by: Philipp Reisner <philipp.reisner@linbit.com>
|
||
|
Reviewed-by: Lars Ellenberg <lars.ellenberg@linbit.com>
|
||
|
Tested-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
|
||
|
Link: https://lore.kernel.org/r/20240306140332.623759-6-philipp.reisner@linbit.com
|
||
|
Signed-off-by: Jens Axboe <axboe@kernel.dk>
|
||
|
Signed-off-by: Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
|
||
|
---
|
||
|
drbd/drbd_nl.c | 1 -
|
||
|
1 file changed, 1 deletion(-)
|
||
|
|
||
|
diff --git a/drbd/drbd_nl.c b/drbd/drbd_nl.c
|
||
|
index ef315e02f437..a0c3534d8996 100644
|
||
|
--- a/drbd/drbd_nl.c
|
||
|
+++ b/drbd/drbd_nl.c
|
||
|
@@ -2070,7 +2070,6 @@ static void decide_on_discard_support(struct drbd_device *device,
|
||
|
blk_queue_discard_granularity(q, 512);
|
||
|
max_discard_sectors = drbd_max_discard_sectors(device->resource);
|
||
|
blk_queue_max_discard_sectors(q, max_discard_sectors);
|
||
|
- blk_queue_max_write_zeroes_sectors(q, max_discard_sectors);
|
||
|
return;
|
||
|
|
||
|
not_supported:
|
||
|
--
|
||
|
2.35.3
|
||
|
|