Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bcc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
bcc
Commits
f3a72812
Commit
f3a72812
authored
Dec 26, 2016
by
Paul Chaignon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix variable name
parent
0abd93e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/python/bcc/__init__.py
src/python/bcc/__init__.py
+2
-2
No files found.
src/python/bcc/__init__.py
View file @
f3a72812
...
...
@@ -779,7 +779,7 @@ class BPF(object):
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
ev_name
=
"p_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
if
ev_name
not
in
self
.
open_uprobes
:
raise
Exception
(
"Uprobe %s is not attached"
%
ev
ent
)
raise
Exception
(
"Uprobe %s is not attached"
%
ev
_name
)
lib
.
perf_reader_free
(
self
.
open_uprobes
[
ev_name
])
desc
=
"-:uprobes/%s"
%
ev_name
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
...
...
@@ -831,7 +831,7 @@ class BPF(object):
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
ev_name
=
"r_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
if
ev_name
not
in
self
.
open_uprobes
:
raise
Exception
(
"
Kretprobe %s is not attached"
%
event
)
raise
Exception
(
"
Uretprobe %s is not attached"
%
ev_name
)
lib
.
perf_reader_free
(
self
.
open_uprobes
[
ev_name
])
desc
=
"-:uprobes/%s"
%
ev_name
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment