Patch "drbd: use blk_queue_max_discard_sectors helper" has been added to the 6.1-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    drbd: use blk_queue_max_discard_sectors helper

to the 6.1-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     drbd-use-blk_queue_max_discard_sectors-helper.patch
and it can be found in the queue-6.1 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 68e1222e099d1fafd8eef9b49516a33a6a1402b3
Author: Christoph Böhmwalder <christoph.boehmwalder@xxxxxxxxxx>
Date:   Wed Nov 9 14:34:51 2022 +0100

    drbd: use blk_queue_max_discard_sectors helper
    
    [ Upstream commit 258bea6388ac93f34561fd91064232d14e174bff ]
    
    We currently only set q->limits.max_discard_sectors, but that is not
    enough. Another field, max_hw_discard_sectors, was introduced in
    commit 0034af036554 ("block: make /sys/block/<dev>/queue/discard_max_bytes
    writeable").
    
    The difference is that max_discard_sectors can be changed from user
    space via sysfs, while max_hw_discard_sectors is the "hardware" upper
    limit.
    
    So use this helper, which sets both.
    
    This is also a fixup for commit 998e9cbcd615 ("drbd: cleanup
    decide_on_discard_support"): if discards are not supported, that does
    not necessarily mean we also want to disable write_zeroes.
    
    Fixes: 998e9cbcd615 ("drbd: cleanup decide_on_discard_support")
    Reviewed-by: Joel Colledge <joel.colledge@xxxxxxxxxx>
    Signed-off-by: Christoph Böhmwalder <christoph.boehmwalder@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221109133453.51652-2-christoph.boehmwalder@xxxxxxxxxx
    Signed-off-by: Jens Axboe <axboe@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/block/drbd/drbd_nl.c b/drivers/block/drbd/drbd_nl.c
index 864c98e74875..249eba7d21c2 100644
--- a/drivers/block/drbd/drbd_nl.c
+++ b/drivers/block/drbd/drbd_nl.c
@@ -1210,6 +1210,7 @@ static void decide_on_discard_support(struct drbd_device *device,
 	struct drbd_connection *connection =
 		first_peer_device(device)->connection;
 	struct request_queue *q = device->rq_queue;
+	unsigned int max_discard_sectors;
 
 	if (bdev && !bdev_max_discard_sectors(bdev->backing_bdev))
 		goto not_supported;
@@ -1230,15 +1231,14 @@ static void decide_on_discard_support(struct drbd_device *device,
 	 * topology on all peers.
 	 */
 	blk_queue_discard_granularity(q, 512);
-	q->limits.max_discard_sectors = drbd_max_discard_sectors(connection);
-	q->limits.max_write_zeroes_sectors =
-		drbd_max_discard_sectors(connection);
+	max_discard_sectors = drbd_max_discard_sectors(connection);
+	blk_queue_max_discard_sectors(q, max_discard_sectors);
+	blk_queue_max_write_zeroes_sectors(q, max_discard_sectors);
 	return;
 
 not_supported:
 	blk_queue_discard_granularity(q, 0);
-	q->limits.max_discard_sectors = 0;
-	q->limits.max_write_zeroes_sectors = 0;
+	blk_queue_max_discard_sectors(q, 0);
 }
 
 static void fixup_write_zeroes(struct drbd_device *device, struct request_queue *q)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux