~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/damon/damos_quota_goal.py

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #!/usr/bin/env python3
  2 # SPDX-License-Identifier: GPL-2.0
  3 
  4 import subprocess
  5 import time
  6 
  7 import _damon_sysfs
  8 
  9 def main():
 10     # access two 10 MiB memory regions, 2 second per each
 11     sz_region = 10 * 1024 * 1024
 12     proc = subprocess.Popen(['./access_memory', '2', '%d' % sz_region, '2000'])
 13 
 14     goal = _damon_sysfs.DamosQuotaGoal(
 15             metric=_damon_sysfs.qgoal_metric_user_input, target_value=10000)
 16     kdamonds = _damon_sysfs.Kdamonds([_damon_sysfs.Kdamond(
 17             contexts=[_damon_sysfs.DamonCtx(
 18                 ops='vaddr',
 19                 targets=[_damon_sysfs.DamonTarget(pid=proc.pid)],
 20                 schemes=[_damon_sysfs.Damos(
 21                     action='stat',
 22                     quota=_damon_sysfs.DamosQuota(
 23                         goals=[goal], reset_interval_ms=100),
 24                     )] # schemes
 25                 )] # contexts
 26             )]) # kdamonds
 27 
 28     err = kdamonds.start()
 29     if err != None:
 30         print('kdamond start failed: %s' % err)
 31         exit(1)
 32 
 33     score_values_to_test = [0, 15000, 5000, 18000]
 34     while proc.poll() == None:
 35         if len(score_values_to_test) == 0:
 36             time.sleep(0.1)
 37             continue
 38 
 39         goal.current_value = score_values_to_test.pop(0)
 40         expect_increase = goal.current_value < goal.target_value
 41 
 42         err = kdamonds.kdamonds[0].commit_schemes_quota_goals()
 43         if err is not None:
 44             print('commit_schemes_quota_goals failed: %s' % err)
 45             exit(1)
 46 
 47         err = kdamonds.kdamonds[0].update_schemes_effective_quotas()
 48         if err is not None:
 49             print('before-update_schemes_effective_quotas failed: %s' % err)
 50             exit(1)
 51         last_effective_bytes = goal.effective_bytes
 52 
 53         time.sleep(0.5)
 54 
 55         err = kdamonds.kdamonds[0].update_schemes_effective_quotas()
 56         if err is not None:
 57             print('after-update_schemes_effective_quotas failed: %s' % err)
 58             exit(1)
 59 
 60         print('score: %s, effective quota: %d -> %d (%.3fx)' % (
 61             goal.current_value, last_effective_bytes, goal.effective_bytes,
 62             goal.effective_bytes / last_effective_bytes
 63             if last_effective_bytes != 0 else -1.0))
 64 
 65         if last_effective_bytes == goal.effective_bytes:
 66             print('efective bytes not changed: %d' % goal.effective_bytes)
 67             exit(1)
 68 
 69         increased = last_effective_bytes < goal.effective_bytes
 70         if expect_increase != increased:
 71             print('expectation of increase (%s) != increased (%s)' %
 72                   (expect_increase, increased))
 73             exit(1)
 74         last_effective_bytes = goal.effective_bytes
 75 
 76 if __name__ == '__main__':
 77     main()

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php