public inbox for linux-bcache@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bcache: add cond_resched() in __bch_cache_cmp()
@ 2019-03-07  5:15 shile.zhang
  2019-03-07 10:34 ` Coly Li
  0 siblings, 1 reply; 9+ messages in thread
From: shile.zhang @ 2019-03-07  5:15 UTC (permalink / raw)
  To: Coly Li, Kent Overstreet; +Cc: linux-bcache, linux-kernel, Shile Zhang

From: Shile Zhang <shile.zhang@linux.alibaba.com>

Read /sys/fs/bcache/<uuid>/cacheN/priority_stats can take very long
time with huge cache after long run.

Signed-off-by: Shile Zhang <shile.zhang@linux.alibaba.com>
---
 drivers/md/bcache/sysfs.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/md/bcache/sysfs.c b/drivers/md/bcache/sysfs.c
index 557a8a3..028fea1 100644
--- a/drivers/md/bcache/sysfs.c
+++ b/drivers/md/bcache/sysfs.c
@@ -897,6 +897,7 @@ static void bch_cache_set_internal_release(struct kobject *k)
 
 static int __bch_cache_cmp(const void *l, const void *r)
 {
+	cond_resched();
 	return *((uint16_t *)r) - *((uint16_t *)l);
 }
 
-- 
1.8.3.1

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

end of thread, other threads:[~2019-08-14 16:50 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-03-07  5:15 [PATCH] bcache: add cond_resched() in __bch_cache_cmp() shile.zhang
2019-03-07 10:34 ` Coly Li
2019-03-07 15:06   ` Shile Zhang
2019-03-07 15:36     ` Coly Li
2019-03-07 15:44       ` Vojtech Pavlik
2019-03-08  0:35         ` Shile Zhang
2019-03-08  2:19           ` Coly Li
2019-08-14 14:23             ` Heitor Alves de Siqueira
2019-08-14 16:50               ` Coly Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox