mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The current test scripts contain duplicated root permission checks in multiple locations. This patch consolidates these checks into _common.sh to eliminate code redundancy. Link: https://lkml.kernel.org/r/20250718064217.299300-1-lienze@kylinos.cn Signed-off-by: Enze Li <lienze@kylinos.cn> Reviewed-by: SeongJae Park <sj@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
40 lines
767 B
Bash
Executable file
40 lines
767 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
source _common.sh
|
|
|
|
# Kselftest framework requirement - SKIP code is 4.
|
|
ksft_skip=4
|
|
|
|
check_dependencies
|
|
|
|
damon_reclaim_enabled="/sys/module/damon_reclaim/parameters/enabled"
|
|
if [ ! -f "$damon_reclaim_enabled" ]
|
|
then
|
|
echo "No 'enabled' file. Maybe DAMON_RECLAIM not built"
|
|
exit $ksft_skip
|
|
fi
|
|
|
|
nr_kdamonds=$(pgrep kdamond | wc -l)
|
|
if [ "$nr_kdamonds" -ne 0 ]
|
|
then
|
|
echo "Another kdamond is running"
|
|
exit $ksft_skip
|
|
fi
|
|
|
|
echo Y > "$damon_reclaim_enabled"
|
|
|
|
nr_kdamonds=$(pgrep kdamond | wc -l)
|
|
if [ "$nr_kdamonds" -ne 1 ]
|
|
then
|
|
echo "kdamond is not turned on"
|
|
exit 1
|
|
fi
|
|
|
|
echo N > "$damon_reclaim_enabled"
|
|
nr_kdamonds=$(pgrep kdamond | wc -l)
|
|
if [ "$nr_kdamonds" -ne 0 ]
|
|
then
|
|
echo "kdamond is not turned off"
|
|
exit 1
|
|
fi
|