mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-22 17:52:09 +00:00
Add simple test cases for DAMON_LRU_SORT's 'enabled' parameter. Those tests are focusing on the synchronous behavior of DAMON_RECLAIM enabling and disabling. Link: https://lkml.kernel.org/r/20221025173650.90624-5-sj@kernel.org Signed-off-by: SeongJae Park <sj@kernel.org> Cc: Shuah Khan <shuah@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
42 lines
798 B
Bash
42 lines
798 B
Bash
#!/bin/bash
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# Kselftest framework requirement - SKIP code is 4.
|
|
ksft_skip=4
|
|
|
|
if [ $EUID -ne 0 ]
|
|
then
|
|
echo "Run as root"
|
|
exit $ksft_skip
|
|
fi
|
|
|
|
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
|