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

TOMOYO Linux Cross Reference
Linux/tools/cgroup/memcg_shrinker.py

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /tools/cgroup/memcg_shrinker.py (Architecture mips) and /tools/cgroup/memcg_shrinker.py (Architecture alpha)


  1 #!/usr/bin/env python3                              1 #!/usr/bin/env python3
  2 #                                                   2 #
  3 # Copyright (C) 2022 Roman Gushchin <roman.gush      3 # Copyright (C) 2022 Roman Gushchin <roman.gushchin@linux.dev>
  4 # Copyright (C) 2022 Meta                           4 # Copyright (C) 2022 Meta
  5                                                     5 
  6 import os                                           6 import os
  7 import argparse                                     7 import argparse
  8                                                     8 
  9                                                     9 
 10 def scan_cgroups(cgroup_root):                     10 def scan_cgroups(cgroup_root):
 11     cgroups = {}                                   11     cgroups = {}
 12                                                    12 
 13     for root, subdirs, _ in os.walk(cgroup_roo     13     for root, subdirs, _ in os.walk(cgroup_root):
 14         for cgroup in subdirs:                     14         for cgroup in subdirs:
 15             path = os.path.join(root, cgroup)      15             path = os.path.join(root, cgroup)
 16             ino = os.stat(path).st_ino             16             ino = os.stat(path).st_ino
 17             cgroups[ino] = path                    17             cgroups[ino] = path
 18                                                    18 
 19     # (memcg ino, path)                            19     # (memcg ino, path)
 20     return cgroups                                 20     return cgroups
 21                                                    21 
 22                                                    22 
 23 def scan_shrinkers(shrinker_debugfs):              23 def scan_shrinkers(shrinker_debugfs):
 24     shrinkers = []                                 24     shrinkers = []
 25                                                    25 
 26     for root, subdirs, _ in os.walk(shrinker_d     26     for root, subdirs, _ in os.walk(shrinker_debugfs):
 27         for shrinker in subdirs:                   27         for shrinker in subdirs:
 28             count_path = os.path.join(root, sh     28             count_path = os.path.join(root, shrinker, "count")
 29             with open(count_path) as f:            29             with open(count_path) as f:
 30                 for line in f.readlines():         30                 for line in f.readlines():
 31                     items = line.split(' ')        31                     items = line.split(' ')
 32                     ino = int(items[0])            32                     ino = int(items[0])
 33                     # (count, shrinker, memcg      33                     # (count, shrinker, memcg ino)
 34                     shrinkers.append((int(item     34                     shrinkers.append((int(items[1]), shrinker, ino))
 35     return shrinkers                               35     return shrinkers
 36                                                    36 
 37                                                    37 
 38 def main():                                        38 def main():
 39     parser = argparse.ArgumentParser(descripti     39     parser = argparse.ArgumentParser(description='Display biggest shrinkers')
 40     parser.add_argument('-n', '--lines', type=     40     parser.add_argument('-n', '--lines', type=int, help='Number of lines to print')
 41                                                    41 
 42     args = parser.parse_args()                     42     args = parser.parse_args()
 43                                                    43 
 44     cgroups = scan_cgroups("/sys/fs/cgroup/")      44     cgroups = scan_cgroups("/sys/fs/cgroup/")
 45     shrinkers = scan_shrinkers("/sys/kernel/de     45     shrinkers = scan_shrinkers("/sys/kernel/debug/shrinker/")
 46     shrinkers.sort(reverse = True, key = lambd     46     shrinkers.sort(reverse = True, key = lambda x: x[0])
 47                                                    47 
 48     n = 0                                          48     n = 0
 49     for s in shrinkers:                            49     for s in shrinkers:
 50         count, name, ino = (s[0], s[1], s[2])      50         count, name, ino = (s[0], s[1], s[2])
 51         if count == 0:                             51         if count == 0:
 52             break                                  52             break
 53                                                    53 
 54         if ino == 0 or ino == 1:                   54         if ino == 0 or ino == 1:
 55             cg = "/"                               55             cg = "/"
 56         else:                                      56         else:
 57             try:                                   57             try:
 58                 cg = cgroups[ino]                  58                 cg = cgroups[ino]
 59             except KeyError:                       59             except KeyError:
 60                 cg = "unknown (%d)" % ino          60                 cg = "unknown (%d)" % ino
 61                                                    61 
 62         print("%-8s %-20s %s" % (count, name,      62         print("%-8s %-20s %s" % (count, name, cg))
 63                                                    63 
 64         n += 1                                     64         n += 1
 65         if args.lines and n >= args.lines:         65         if args.lines and n >= args.lines:
 66             break                                  66             break
 67                                                    67 
 68                                                    68 
 69 if __name__ == '__main__':                         69 if __name__ == '__main__':
 70     main()                                         70     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