summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorChangbin Du <changbin.du@gmail.com>2021-11-05 23:46:09 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2021-11-06 23:30:44 +0300
commit5f7fe2b9b827662cf349ab45406d6cbf0cc6251f (patch)
tree001e317f786d2f3b7506fdba7cda8b1d783af929 /mm
parent704571f997424ecd64b10b37ca6097e65690240a (diff)
downloadlinux-5f7fe2b9b827662cf349ab45406d6cbf0cc6251f.tar.xz
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: Changbin Du <changbin.du@gmail.com> Cc: SeongJae Park <sjpark@amazon.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/damon/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/damon/core.c b/mm/damon/core.c
index 874558a790a0..61a9e3b37bc9 100644
--- a/mm/damon/core.c
+++ b/mm/damon/core.c
@@ -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"