Commit 539d39eb authored by Tang Junhui's avatar Tang Junhui Committed by Jens Axboe

bcache: fix wrong return value in bch_debug_init()

in bch_debug_init(), ret is always 0, and the return value is useless,
change it to return 0 if be success after calling debugfs_create_dir(),
else return a non-zero value.
Signed-off-by: default avatarTang Junhui <tang.junhui@zte.com.cn>
Reviewed-by: default avatarMichael Lyle <mlyle@lyle.org>
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent 4eca1cb2
...@@ -323,12 +323,6 @@ struct cached_dev { ...@@ -323,12 +323,6 @@ struct cached_dev {
struct bch_ratelimit writeback_rate; struct bch_ratelimit writeback_rate;
struct delayed_work writeback_rate_update; struct delayed_work writeback_rate_update;
/*
* Internal to the writeback code, so read_dirty() can keep track of
* where it's at.
*/
sector_t last_read;
/* Limit number of writeback bios in flight */ /* Limit number of writeback bios in flight */
struct semaphore in_flight; struct semaphore in_flight;
struct task_struct *writeback_thread; struct task_struct *writeback_thread;
......
...@@ -251,8 +251,7 @@ void bch_debug_exit(void) ...@@ -251,8 +251,7 @@ void bch_debug_exit(void)
int __init bch_debug_init(struct kobject *kobj) int __init bch_debug_init(struct kobject *kobj)
{ {
int ret = 0;
debug = debugfs_create_dir("bcache", NULL); debug = debugfs_create_dir("bcache", NULL);
return ret;
return IS_ERR_OR_NULL(debug);
} }
...@@ -237,7 +237,9 @@ static void read_dirty_submit(struct closure *cl) ...@@ -237,7 +237,9 @@ static void read_dirty_submit(struct closure *cl)
static void read_dirty(struct cached_dev *dc) static void read_dirty(struct cached_dev *dc)
{ {
unsigned delay = 0; unsigned delay = 0;
struct keybuf_key *w; struct keybuf_key *next, *keys[MAX_WRITEBACKS_IN_PASS], *w;
size_t size;
int nk, i;
struct dirty_io *io; struct dirty_io *io;
struct closure cl; struct closure cl;
...@@ -248,45 +250,87 @@ static void read_dirty(struct cached_dev *dc) ...@@ -248,45 +250,87 @@ static void read_dirty(struct cached_dev *dc)
* mempools. * mempools.
*/ */
while (!kthread_should_stop()) { next = bch_keybuf_next(&dc->writeback_keys);
w = bch_keybuf_next(&dc->writeback_keys); while (!kthread_should_stop() && next) {
if (!w) size = 0;
break; nk = 0;
BUG_ON(ptr_stale(dc->disk.c, &w->key, 0)); do {
BUG_ON(ptr_stale(dc->disk.c, &next->key, 0));
if (KEY_START(&w->key) != dc->last_read ||
jiffies_to_msecs(delay) > 50) /*
while (!kthread_should_stop() && delay) * Don't combine too many operations, even if they
delay = schedule_timeout_interruptible(delay); * are all small.
*/
dc->last_read = KEY_OFFSET(&w->key); if (nk >= MAX_WRITEBACKS_IN_PASS)
break;
io = kzalloc(sizeof(struct dirty_io) + sizeof(struct bio_vec)
* DIV_ROUND_UP(KEY_SIZE(&w->key), PAGE_SECTORS), /*
GFP_KERNEL); * If the current operation is very large, don't
if (!io) * further combine operations.
goto err; */
if (size >= MAX_WRITESIZE_IN_PASS)
w->private = io; break;
io->dc = dc;
/*
dirty_init(w); * Operations are only eligible to be combined
bio_set_op_attrs(&io->bio, REQ_OP_READ, 0); * if they are contiguous.
io->bio.bi_iter.bi_sector = PTR_OFFSET(&w->key, 0); *
bio_set_dev(&io->bio, PTR_CACHE(dc->disk.c, &w->key, 0)->bdev); * TODO: add a heuristic willing to fire a
io->bio.bi_end_io = read_dirty_endio; * certain amount of non-contiguous IO per pass,
* so that we can benefit from backing device
if (bch_bio_alloc_pages(&io->bio, GFP_KERNEL)) * command queueing.
goto err_free; */
if ((nk != 0) && bkey_cmp(&keys[nk-1]->key,
trace_bcache_writeback(&w->key); &START_KEY(&next->key)))
break;
size += KEY_SIZE(&next->key);
keys[nk++] = next;
} while ((next = bch_keybuf_next(&dc->writeback_keys)));
/* Now we have gathered a set of 1..5 keys to write back. */
for (i = 0; i < nk; i++) {
w = keys[i];
io = kzalloc(sizeof(struct dirty_io) +
sizeof(struct bio_vec) *
DIV_ROUND_UP(KEY_SIZE(&w->key), PAGE_SECTORS),
GFP_KERNEL);
if (!io)
goto err;
w->private = io;
io->dc = dc;
dirty_init(w);
bio_set_op_attrs(&io->bio, REQ_OP_READ, 0);
io->bio.bi_iter.bi_sector = PTR_OFFSET(&w->key, 0);
bio_set_dev(&io->bio,
PTR_CACHE(dc->disk.c, &w->key, 0)->bdev);
io->bio.bi_end_io = read_dirty_endio;
if (bch_bio_alloc_pages(&io->bio, GFP_KERNEL))
goto err_free;
trace_bcache_writeback(&w->key);
down(&dc->in_flight);
/* We've acquired a semaphore for the maximum
* simultaneous number of writebacks; from here
* everything happens asynchronously.
*/
closure_call(&io->cl, read_dirty_submit, NULL, &cl);
}
down(&dc->in_flight); delay = writeback_delay(dc, size);
closure_call(&io->cl, read_dirty_submit, NULL, &cl);
delay = writeback_delay(dc, KEY_SIZE(&w->key)); while (!kthread_should_stop() && delay) {
schedule_timeout_interruptible(delay);
delay = writeback_delay(dc, 0);
}
} }
if (0) { if (0) {
......
...@@ -5,6 +5,9 @@ ...@@ -5,6 +5,9 @@
#define CUTOFF_WRITEBACK 40 #define CUTOFF_WRITEBACK 40
#define CUTOFF_WRITEBACK_SYNC 70 #define CUTOFF_WRITEBACK_SYNC 70
#define MAX_WRITEBACKS_IN_PASS 5
#define MAX_WRITESIZE_IN_PASS 5000 /* *512b */
static inline uint64_t bcache_dev_sectors_dirty(struct bcache_device *d) static inline uint64_t bcache_dev_sectors_dirty(struct bcache_device *d)
{ {
uint64_t i, ret = 0; uint64_t i, ret = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment