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

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.comSigned-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
...@@ -714,7 +714,7 @@ static int kdamond_fn(void *data) ...@@ -714,7 +714,7 @@ static int kdamond_fn(void *data)
nr_running_ctxs--; nr_running_ctxs--;
mutex_unlock(&damon_lock); mutex_unlock(&damon_lock);
do_exit(0); return 0;
} }
#include "core-test.h" #include "core-test.h"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment