mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-08-31 12:52:29 -04:00
samples/damon/mtier: stop all contexts with single damon_stop() call
damon_stop() was theoretically able to return failure while keeping the second context for mtier running. mtier stops its contexts one by one with two damon_stop() call for the reason. damon_stop() is refactored to always successfully stop all requested DAMON contexts. The two calls are unnecessary. Use only single damon_stop() call for all contexts. Link: https://lore.kernel.org/20260706140628.87414-9-sj@kernel.org Signed-off-by: SJ Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
@@ -200,8 +200,7 @@ static int damon_sample_mtier_start(void)
|
||||
|
||||
static void damon_sample_mtier_stop(void)
|
||||
{
|
||||
damon_stop(ctxs, 1);
|
||||
damon_stop(&ctxs[1], 1);
|
||||
damon_stop(ctxs, 2);
|
||||
damon_destroy_ctx(ctxs[0]);
|
||||
damon_destroy_ctx(ctxs[1]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user