]> Git Repo - linux.git/commit
mm/damon/dbgfs: add adaptive_targets list check before enable monitor_on
authorXin Hao <[email protected]>
Fri, 5 Nov 2021 20:48:07 +0000 (13:48 -0700)
committerLinus Torvalds <[email protected]>
Sat, 6 Nov 2021 20:30:46 +0000 (13:30 -0700)
commitb5ca3e83ddb05342b1b30700b999cb9b107511f6
treead0e7fc87f2bad35fcc949426c996975cc8e6dab
parenta460a36034bad4403c2c62e04a521bc6987ae5db
mm/damon/dbgfs: add adaptive_targets list check before enable monitor_on

When the ctx->adaptive_targets list is empty, I did some test on
monitor_on interface like this.

    # cat /sys/kernel/debug/damon/target_ids
    #
    # echo on > /sys/kernel/debug/damon/monitor_on
    # damon: kdamond (5390) starts

Though the ctx->adaptive_targets list is empty, but the kthread_run
still be called, and the kdamond.x thread still be created, this is
meaningless.

So there adds a judgment in 'dbgfs_monitor_on_write', if the
ctx->adaptive_targets list is empty, return -EINVAL.

Link: https://lkml.kernel.org/r/0a60a6e8ec9d71989e0848a4dc3311996ca3b5d4.1634720326.git.xhao@linux.alibaba.com
Signed-off-by: Xin Hao <[email protected]>
Reviewed-by: SeongJae Park <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
include/linux/damon.h
mm/damon/core.c
mm/damon/dbgfs.c
This page took 0.060814 seconds and 4 git commands to generate.