aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/disk-io.c
diff options
context:
space:
mode:
authorJiri Kosina <jkosina@suse.cz>2016-03-15 06:28:54 -0400
committerDavid Sterba <dsterba@suse.com>2016-03-22 05:08:47 -0400
commit838fe1887765f4cc679febea60d87d2a06bd300e (patch)
treeb6947edb986075951373ba9203eb0935495cf1c1 /fs/btrfs/disk-io.c
parent0f805531daa2ebfb5706422dc2ead1cff9e53e65 (diff)
btrfs: cleaner_kthread() doesn't need explicit freeze
cleaner_kthread() is not marked freezable, and therefore calling try_to_freeze() in its context is a pointless no-op. In addition to that, as has been clearly demonstrated by 80ad623edd2d ("Revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()"), it's perfectly valid / legal for cleaner_kthread() to stay scheduled out in an arbitrary place during suspend (in that particular example that was waiting for reading of extent pages), so there is no need to leave any traces of freezer in this kthread. Fixes: 80ad623edd2d ("Revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()") Fixes: 696249132158 ("btrfs: clear PF_NOFREEZE in cleaner_kthread()") Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/disk-io.c')
-rw-r--r--fs/btrfs/disk-io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/disk-io.c b/fs/btrfs/disk-io.c
index 8579b35bb160..ff36a33ee9ca 100644
--- a/fs/btrfs/disk-io.c
+++ b/fs/btrfs/disk-io.c
@@ -1838,7 +1838,7 @@ static int cleaner_kthread(void *arg)
1838 */ 1838 */
1839 btrfs_delete_unused_bgs(root->fs_info); 1839 btrfs_delete_unused_bgs(root->fs_info);
1840sleep: 1840sleep:
1841 if (!try_to_freeze() && !again) { 1841 if (!again) {
1842 set_current_state(TASK_INTERRUPTIBLE); 1842 set_current_state(TASK_INTERRUPTIBLE);
1843 if (!kthread_should_stop()) 1843 if (!kthread_should_stop())
1844 schedule(); 1844 schedule();