@@ -34,6 +34,9 @@ if [ $? -ne 0 ]; then
tst_brkm TBROK "getconf PAGESIZE failed"
fi
+# Post 4.16 kernel updates stat in batch (> 32 pages) every time
+PAGESIZES=$(( $PAGESIZE * 33 ))
+
HUGEPAGESIZE=$(awk '/Hugepagesize/ {print $2}' /proc/meminfo)
[ -z $HUGEPAGESIZE ] && HUGEPAGESIZE=0
HUGEPAGESIZE=$(( $HUGEPAGESIZE * 1024 ))
@@ -404,18 +407,18 @@ test_subgroup()
echo $1 > memory.limit_in_bytes
echo $2 > subgroup/memory.limit_in_bytes
- tst_resm TINFO "Running memcg_process --mmap-anon -s $PAGESIZE"
- memcg_process --mmap-anon -s $PAGESIZE &
+ tst_resm TINFO "Running memcg_process --mmap-anon -s $PAGESIZES"
+ memcg_process --mmap-anon -s $PAGESIZES &
TST_CHECKPOINT_WAIT 0
- warmup $! $PAGESIZE
+ warmup $! $PAGESIZES
if [ $? -ne 0 ]; then
return
fi
echo $! > tasks
- signal_memcg_process $! $PAGESIZE
- check_mem_stat "rss" $PAGESIZE
+ signal_memcg_process $! $PAGESIZES
+ check_mem_stat "rss" $PAGESIZES
cd subgroup
echo $! > tasks
@@ -34,28 +34,28 @@ TST_TOTAL=4
# Test disable moving charges
testcase_1()
{
- test_move_charge "--mmap-anon" $PAGESIZE $PAGESIZE 0 0 0 $PAGESIZE 0
+ test_move_charge "--mmap-anon" $PAGESIZES $PAGESIZES 0 0 0 $PAGESIZES 0
}
# Test move anon
testcase_2()
{
- test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZE \
- $((PAGESIZE*3)) 1 $PAGESIZE 0 0 $((PAGESIZE*2))
+ test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZES \
+ $((PAGESIZES*3)) 1 $PAGESIZES 0 0 $((PAGESIZES*2))
}
# Test move file
testcase_3()
{
- test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZE \
- $((PAGESIZE*3)) 2 0 $((PAGESIZE*2)) $PAGESIZE 0
+ test_move_charge "--mmap-anon --shm --mmap-file" $PAGESIZES \
+ $((PAGESIZES*3)) 2 0 $((PAGESIZES*2)) $PAGESIZES 0
}
# Test move anon and file
testcase_4()
{
- test_move_charge "--mmap-anon --shm" $PAGESIZE \
- $((PAGESIZE*2)) 3 $PAGESIZE $PAGESIZE 0 0
+ test_move_charge "--mmap-anon --shm" $PAGESIZES \
+ $((PAGESIZES*2)) 3 $PAGESIZES $PAGESIZES 0 0
}
run_tests
@@ -33,7 +33,7 @@ TST_TOTAL=10
# Test the management and counting of memory
testcase_1()
{
- test_mem_stat "--mmap-anon" $PAGESIZE $PAGESIZE "rss" $PAGESIZE false
+ test_mem_stat "--mmap-anon" $PAGESIZES $PAGESIZES "rss" $PAGESIZES false
}
testcase_2()
@@ -49,17 +49,17 @@ testcase_3()
testcase_4()
{
test_mem_stat "--mmap-anon --mmap-file --shm" \
- $PAGESIZE $((PAGESIZE*3)) "rss" $PAGESIZE false
+ $PAGESIZES $((PAGESIZES*3)) "rss" $PAGESIZES false
}
testcase_5()
{
- test_mem_stat "--mmap-lock1" $PAGESIZE $PAGESIZE "rss" $PAGESIZE false
+ test_mem_stat "--mmap-lock1" $PAGESIZES $PAGESIZES "rss" $PAGESIZES false
}
testcase_6()
{
- test_mem_stat "--mmap-anon" $PAGESIZE $PAGESIZE "rss" $PAGESIZE true
+ test_mem_stat "--mmap-anon" $PAGESIZES $PAGESIZES "rss" $PAGESIZES true
}
testcase_7()
@@ -75,12 +75,12 @@ testcase_8()
testcase_9()
{
test_mem_stat "--mmap-anon --mmap-file --shm" \
- $PAGESIZE $((PAGESIZE*3)) "rss" $PAGESIZE true
+ $PAGESIZES $((PAGESIZES*3)) "rss" $PAGESIZES true
}
testcase_10()
{
- test_mem_stat "--mmap-lock1" $PAGESIZE $PAGESIZE "rss" $PAGESIZE true
+ test_mem_stat "--mmap-lock1" $PAGESIZES $PAGESIZES "rss" $PAGESIZES true
}
shmmax_setup
@@ -34,14 +34,14 @@ TST_TOTAL=8
# Test cache
testcase_1()
{
- test_mem_stat "--shm -k 3" $PAGESIZE $PAGESIZE "cache" $PAGESIZE false
+ test_mem_stat "--shm -k 3" $PAGESIZES $PAGESIZES "cache" $PAGESIZES false
}
# Test mapped_file
testcase_2()
{
- test_mem_stat "--mmap-file" $PAGESIZE $PAGESIZE \
- "mapped_file" $PAGESIZE false
+ test_mem_stat "--mmap-file" $PAGESIZES $PAGESIZES \
+ "mapped_file" $PAGESIZES false
}
# Test unevictable with MAP_LOCKED
Due to upstream kernel commit a983b5ebee57209c99f68c8327072f25e0e6e3da ("mm: memcontrol: fix excessive complexity in memory.stat reporting"), memory.stat is updated in a batch of 33 pages. This results in some test cases fail at checking stat counter since they just touch one page. Introduce PAGESIZES, which is 33 * PAGESIZE, used by affected test cases, keep others still use PAGESIZE. And, this change doesn't break pre-4.16 kernel. Signed-off-by: Yang Shi <yang.shi@linux.alibaba.com> --- v1 --> v2: * Rename TST_PAGESIZE to PAGESIZES per Li Wang's suggestion testcases/kernel/controllers/memcg/functional/memcg_lib.sh | 13 ++++++++----- .../functional/memcg_move_charge_at_immigrate_test.sh | 14 +++++++------- .../kernel/controllers/memcg/functional/memcg_stat_rss.sh | 12 ++++++------ .../kernel/controllers/memcg/functional/memcg_stat_test.sh | 6 +++--- 4 files changed, 24 insertions(+), 21 deletions(-)