Commit 5c550b5d authored by yonghong-song's avatar yonghong-song Committed by GitHub

Merge pull request #1659 from lcp/cachetop-bytes

tools/cachetop: match bpf.ksym() with bytes arrays
parents 865133d1 c5b5b30c
......@@ -88,16 +88,16 @@ def get_processes_stats(
whits = 0
for k, v in count.items():
if re.match('mark_page_accessed', bpf.ksym(k)) is not None:
if re.match(b'mark_page_accessed', bpf.ksym(k)) is not None:
mpa = max(0, v)
if re.match('mark_buffer_dirty', bpf.ksym(k)) is not None:
if re.match(b'mark_buffer_dirty', bpf.ksym(k)) is not None:
mbd = max(0, v)
if re.match('add_to_page_cache_lru', bpf.ksym(k)) is not None:
if re.match(b'add_to_page_cache_lru', bpf.ksym(k)) is not None:
apcl = max(0, v)
if re.match('account_page_dirtied', bpf.ksym(k)) is not None:
if re.match(b'account_page_dirtied', bpf.ksym(k)) is not None:
apd = max(0, v)
# access = total cache access incl. reads(mpa) and writes(mbd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment