Skip to content

Commit 838fe18

Browse files
Jiri Kosinakdave
authored andcommitted
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 80ad623 ("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: 80ad623 ("Revert "btrfs: clear PF_NOFREEZE in cleaner_kthread()") Fixes: 6962491 ("btrfs: clear PF_NOFREEZE in cleaner_kthread()") Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: David Sterba <dsterba@suse.com>
1 parent 0f80553 commit 838fe18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/btrfs/disk-io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1838,7 +1838,7 @@ static int cleaner_kthread(void *arg)
18381838
*/
18391839
btrfs_delete_unused_bgs(root->fs_info);
18401840
sleep:
1841-
if (!try_to_freeze() && !again) {
1841+
if (!again) {
18421842
set_current_state(TASK_INTERRUPTIBLE);
18431843
if (!kthread_should_stop())
18441844
schedule();

0 commit comments

Comments
 (0)