Home
last modified time | relevance | path

Searched refs:writeback_thread (Results 1 – 5 of 5) sorted by relevance

/linux/drivers/md/bcache/
H A Dwriteback.h130 if (!IS_ERR_OR_NULL(dc->writeback_thread)) in bch_writeback_queue()
131 wake_up_process(dc->writeback_thread); in bch_writeback_queue()
H A Dwriteback.c1083 dc->writeback_thread = kthread_create(bch_writeback_thread, dc, in bch_cached_dev_writeback_start()
1085 if (IS_ERR(dc->writeback_thread)) { in bch_cached_dev_writeback_start()
1088 return PTR_ERR(dc->writeback_thread); in bch_cached_dev_writeback_start()
H A Dsuper.c1153 if (!IS_ERR_OR_NULL(dc->writeback_thread)) { in cached_dev_detach_finish()
1154 kthread_stop(dc->writeback_thread); in cached_dev_detach_finish()
1155 dc->writeback_thread = NULL; in cached_dev_detach_finish()
1319 kthread_stop(dc->writeback_thread); in bch_cached_dev_attach()
1360 if (!IS_ERR_OR_NULL(dc->writeback_thread)) in CLOSURE_CALLBACK()
1361 kthread_stop(dc->writeback_thread); in CLOSURE_CALLBACK()
H A Dbcache.h346 struct task_struct *writeback_thread; member
H A Dsysfs.c470 if (IS_ERR_OR_NULL(dc->writeback_thread)) { in STORE()