lkml.org 
[lkml]   [2024]   [Feb]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 3/8] selftests/damon/_damon_sysfs: support DAMOS apply interval
Date
Update the test-purpose DAMON sysfs control Python module to support
DAMOS apply interval.

Signed-off-by: SeongJae Park <sj@kernel.org>
---
tools/testing/selftests/damon/_damon_sysfs.py | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/tools/testing/selftests/damon/_damon_sysfs.py b/tools/testing/selftests/damon/_damon_sysfs.py
index a75244451684..d23d7398a27a 100644
--- a/tools/testing/selftests/damon/_damon_sysfs.py
+++ b/tools/testing/selftests/damon/_damon_sysfs.py
@@ -114,6 +114,7 @@ class Damos:
action = None
access_pattern = None
quota = None
+ apply_interval_us = None
# todo: Support watermarks, stats, tried_regions
idx = None
context = None
@@ -121,12 +122,13 @@ class Damos:
stats = None

def __init__(self, action='stat', access_pattern=DamosAccessPattern(),
- quota=DamosQuota()):
+ quota=DamosQuota(), apply_interval_us=0):
self.action = action
self.access_pattern = access_pattern
self.access_pattern.scheme = self
self.quota = quota
self.quota.scheme = self
+ self.apply_interval_us = apply_interval_us

def sysfs_dir(self):
return os.path.join(
@@ -139,6 +141,11 @@ class Damos:
err = self.access_pattern.stage()
if err != None:
return err
+ err = write_file(os.path.join(self.sysfs_dir(), 'apply_interval_us'),
+ '%d' % self.apply_interval_us)
+ if err != None:
+ return err
+
err = self.quota.stage()
if err != None:
return err
--
2.39.2

\
 
 \ /
  Last update: 2024-05-27 14:53    [W:0.045 / U:0.028 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site