mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 23:34:00 -04: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
772 B
Bash
Executable File
40 lines
772 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_lru_sort_enabled="/sys/module/damon_lru_sort/parameters/enabled"
|
|
if [ ! -f "$damon_lru_sort_enabled" ]
|
|
then
|
|
echo "No 'enabled' file. Maybe DAMON_LRU_SORT 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_lru_sort_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_lru_sort_enabled"
|
|
nr_kdamonds=$(pgrep kdamond | wc -l)
|
|
if [ "$nr_kdamonds" -ne 0 ]
|
|
then
|
|
echo "kdamond is not turned off"
|
|
exit 1
|
|
fi
|