linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] block: avoid setting wbt_lat_usec to current value
@ 2019-02-11 10:10 Aleksei Zakharov
  2019-02-11 10:31 ` Johannes Thumshirn
  2019-02-11 15:20 ` Jens Axboe
  0 siblings, 2 replies; 3+ messages in thread
From: Aleksei Zakharov @ 2019-02-11 10:10 UTC (permalink / raw)
  To: axboe; +Cc: linux-block, Aleksei Zakharov

There's no reason to set wbt min lat and freeze request queue
if current value is the same.

Signed-off-by: Aleksei Zakharov <zakharov.a.g@yandex.ru>
---
 block/blk-sysfs.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/block/blk-sysfs.c b/block/blk-sysfs.c
index 590d1ef..d0df883 100644
--- a/block/blk-sysfs.c
+++ b/block/blk-sysfs.c
@@ -468,6 +468,9 @@ static ssize_t queue_wb_lat_store(struct request_queue *q, const char *page,
 	else if (val >= 0)
 		val *= 1000ULL;
 
+	if (wbt_get_min_lat(q) == val)
+		return count;
+
 	/*
 	 * Ensure that the queue is idled, in case the latency update
 	 * ends up either enabling or disabling wbt completely. We can't
-- 
2.7.4


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

end of thread, other threads:[~2019-02-11 15:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-11 10:10 [PATCH] block: avoid setting wbt_lat_usec to current value Aleksei Zakharov
2019-02-11 10:31 ` Johannes Thumshirn
2019-02-11 15:20 ` Jens Axboe

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).