Commit a5e2ce53 authored by ygrek's avatar ygrek

tools: fix getting {ext4,btrfs}_file_operations address (ref #583)

parent 5c998acb
......@@ -169,6 +169,7 @@ with open(kallsyms) as syms:
for line in syms:
a = line.rstrip().split()
(addr, name) = (a[0], a[2])
name = name.split("\t")[0]
if name == "btrfs_file_operations":
ops = "0x" + addr
break
......
......@@ -251,6 +251,7 @@ with open(kallsyms) as syms:
for line in syms:
a = line.rstrip().split()
(addr, name) = (a[0], a[2])
name = name.split("\t")[0]
if name == "btrfs_file_operations":
ops = "0x" + addr
break
......
......@@ -149,6 +149,7 @@ with open(kallsyms) as syms:
ops = ''
for line in syms:
(addr, size, name) = line.rstrip().split(" ", 2)
name = name.split("\t")[0]
if name == "ext4_file_operations":
ops = "0x" + addr
break
......
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