* [merged mm-stable] selftests-damon-sysfspy-generalize-damosquota-commit-assertion.patch removed from -mm tree
@ 2025-07-26 22:10 Andrew Morton
0 siblings, 0 replies; only message in thread
From: Andrew Morton @ 2025-07-26 22:10 UTC (permalink / raw)
To: mm-commits, shuah, sj, akpm
The quilt patch titled
Subject: selftests/damon/sysfs.py: generalize DamosQuota commit assertion
has been removed from the -mm tree. Its filename was
selftests-damon-sysfspy-generalize-damosquota-commit-assertion.patch
This patch was dropped because it was merged into the mm-stable branch
of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
------------------------------------------------------
From: SeongJae Park <sj@kernel.org>
Subject: selftests/damon/sysfs.py: generalize DamosQuota commit assertion
Date: Sun, 20 Jul 2025 10:16:43 -0700
DamosQuota commitment assertion is hard-coded for a specific test case.
Split it out into a general version that can be reused for different test
cases.
Link: https://lkml.kernel.org/r/20250720171652.92309-14-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>
---
tools/testing/selftests/damon/sysfs.py | 31 ++++++++++++++---------
1 file changed, 20 insertions(+), 11 deletions(-)
--- a/tools/testing/selftests/damon/sysfs.py~selftests-damon-sysfspy-generalize-damosquota-commit-assertion
+++ a/tools/testing/selftests/damon/sysfs.py
@@ -45,6 +45,18 @@ def assert_watermarks_committed(watermar
assert_true(dump['mid'] == watermarks.mid, 'mid', dump)
assert_true(dump['low'] == watermarks.low, 'low', dump)
+def assert_quota_committed(quota, dump):
+ assert_true(dump['reset_interval'] == quota.reset_interval_ms,
+ 'reset_interval', dump)
+ assert_true(dump['ms'] == quota.ms, 'ms', dump)
+ assert_true(dump['sz'] == quota.sz, 'sz', dump)
+ # TODO: assert goals are committed
+ assert_true(dump['weight_sz'] == quota.weight_sz_permil, 'weight_sz', dump)
+ assert_true(dump['weight_nr_accesses'] == quota.weight_nr_accesses_permil,
+ 'weight_nr_accesses', dump)
+ assert_true(
+ dump['weight_age'] == quota.weight_age_permil, 'weight_age', dump)
+
def main():
kdamonds = _damon_sysfs.Kdamonds(
[_damon_sysfs.Kdamond(
@@ -109,18 +121,15 @@ def main():
if scheme['target_nid'] != -1:
fail('damos target nid', status)
- if scheme['quota'] != {
- 'reset_interval': 0,
- 'ms': 0,
- 'sz': 0,
- 'goals': [],
- 'esz': 0,
- 'weight_sz': 0,
- 'weight_nr_accesses': 0,
- 'weight_age': 0,
- }:
- fail('damos quota', status)
+ migrate_dests = scheme['migrate_dests']
+ if migrate_dests['nr_dests'] != 0:
+ fail('nr_dests', status)
+ if migrate_dests['node_id_arr'] != []:
+ fail('node_id_arr', status)
+ if migrate_dests['weight_arr'] != []:
+ fail('weight_arr', status)
+ assert_quota_committed(_damon_sysfs.DamosQuota(), scheme['quota'])
assert_watermarks_committed(_damon_sysfs.DamosWatermarks(),
scheme['wmarks'])
_
Patches currently in -mm which might be from sj@kernel.org are
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2025-07-26 22:10 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-07-26 22:10 [merged mm-stable] selftests-damon-sysfspy-generalize-damosquota-commit-assertion.patch removed from -mm tree Andrew Morton
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.