dm-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [PATCH] dm-table: set non-zero q->limits.discard_granularity
@ 2020-09-24 14:34 Mikulas Patocka
  2020-09-24 15:00 ` Mike Snitzer
  0 siblings, 1 reply; 3+ messages in thread
From: Mikulas Patocka @ 2020-09-24 14:34 UTC (permalink / raw)
  To: Mike Snitzer, Zdenek Kabelac; +Cc: dm-devel

Hi Mike

Could you send this to Linus before v5.9 is released?

Mikulas



From: Mikulas Patocka <mpatocka@redhat.com>

If q->limits.discard_granularity is zero, the block core will warn in
__blkdev_issue_discard. This patch sets it to a minimum - 512 bytes.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Fixes: b35fd7422c2f ("block: check queue's limits.discard_granularity in __blkdev_issue_discard()")
Fixes: 9b15d109a6b2 ("block: improve discard bio alignment in __blkdev_issue_discard()")
Fixes: c52abf563049 ("loop: Better discard support for block devices")

---
 drivers/md/dm-table.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Index: linux-2.6/drivers/md/dm-table.c
===================================================================
--- linux-2.6.orig/drivers/md/dm-table.c	2020-08-31 12:08:27.000000000 +0200
+++ linux-2.6/drivers/md/dm-table.c	2020-09-24 16:23:55.000000000 +0200
@@ -1858,8 +1858,11 @@ void dm_table_set_restrictions(struct dm
 		q->limits.discard_granularity = 0;
 		q->limits.discard_alignment = 0;
 		q->limits.discard_misaligned = 0;
-	} else
+	} else {
 		blk_queue_flag_set(QUEUE_FLAG_DISCARD, q);
+		if (q->limits.discard_granularity < 512)
+			q->limits.discard_granularity = 512;
+	}
 
 	if (dm_table_supports_secure_erase(t))
 		blk_queue_flag_set(QUEUE_FLAG_SECERASE, q);

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-09-24 16:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-24 14:34 [PATCH] dm-table: set non-zero q->limits.discard_granularity Mikulas Patocka
2020-09-24 15:00 ` Mike Snitzer
2020-09-24 16:25   ` Mikulas Patocka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).