Commit 5f7fe2b9 authored by Changbin Du's avatar Changbin Du Committed by Linus Torvalds
Browse files

mm/damon: remove unnecessary do_exit() from kdamond

Just return from the kthread function.

Link: https://lkml.kernel.org/r/20210927232421.17694-1-changbin.du@gmail.com


Signed-off-by: default avatarChangbin Du <changbin.du@gmail.com>
Cc: SeongJae Park <sjpark@amazon.de>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 704571f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -714,7 +714,7 @@ static int kdamond_fn(void *data)
	nr_running_ctxs--;
	mutex_unlock(&damon_lock);

	do_exit(0);
	return 0;
}

#include "core-test.h"