Skip to content

Commit

Permalink
Merge pull request iovisor#1750 from iovisor/yhs_dev
Browse files Browse the repository at this point in the history
fix get_kprobe_functions
  • Loading branch information
4ast committed May 11, 2018
2 parents fe966bb + 0c27472 commit bad7a20
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/python/bcc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -495,17 +495,18 @@ def get_kprobe_functions(event_re):
blacklist = set([line.rstrip().split()[1] for line in blacklist_f])
fns = []

found_stext = False
in_init_section = 0
with open("/proc/kallsyms", "rb") as avail_file:
for line in avail_file:
(_, t, fn) = line.rstrip().split()[:3]
if found_stext is False:
if fn == b'_stext':
found_stext = True
(t, fn) = line.rstrip().split()[1:3]
if in_init_section == 0:
if fn == b'__init_begin':
in_init_section = 1
continue
elif in_init_section == 1:
if fn == b'__init_end':
in_init_section = 2
continue

if fn == b'_etext':
break
if (t.lower() in [b't', b'w']) and re.match(event_re, fn) \
and fn not in blacklist:
fns.append(fn)
Expand Down

0 comments on commit bad7a20

Please sign in to comment.