diff options
author | Jiri Kosina <jkosina@suse.cz> | 2016-05-24 16:38:15 +0200 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-05-24 09:00:43 -0600 |
commit | 770b8ce400123af89ac469361d7912f458915547 (patch) | |
tree | d331f0f38720f1cab43cfab7ca954a8146ca9ed2 /drivers/md | |
parent | 7c87df9c159aa1d228f0d77b37942216cff34922 (diff) | |
download | linux-770b8ce400123af89ac469361d7912f458915547.tar.bz2 |
bcache: bch_allocator_thread() is not freezable
bch_allocator_thread() is calling try_to_freeze(), but that's just an
expensive no-op given the fact that the thread is not marked freezable.
Bucket allocator has to be up and running to the very last stages of the
suspend, as the bcache I/O that's in flight (think of writing an
hibernation image to a swap device served by bcache).
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/md')
-rw-r--r-- | drivers/md/bcache/alloc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/md/bcache/alloc.c b/drivers/md/bcache/alloc.c index 8eeab72b93e2..ca4abe1ccd8d 100644 --- a/drivers/md/bcache/alloc.c +++ b/drivers/md/bcache/alloc.c @@ -64,7 +64,6 @@ #include "btree.h" #include <linux/blkdev.h> -#include <linux/freezer.h> #include <linux/kthread.h> #include <linux/random.h> #include <trace/events/bcache.h> @@ -288,7 +287,6 @@ do { \ if (kthread_should_stop()) \ return 0; \ \ - try_to_freeze(); \ schedule(); \ mutex_lock(&(ca)->set->bucket_lock); \ } \ |