Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
bcc
Commits
f3a72812
Commit
f3a72812
authored
8 years ago
by
Paul Chaignon
Browse files
Options
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):
...
@@ -779,7 +779,7 @@ class BPF(object):
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
ev_name
=
"p_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
ev_name
=
"p_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
if
ev_name
not
in
self
.
open_uprobes
:
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
])
lib
.
perf_reader_free
(
self
.
open_uprobes
[
ev_name
])
desc
=
"-:uprobes/%s"
%
ev_name
desc
=
"-:uprobes/%s"
%
ev_name
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
...
@@ -831,7 +831,7 @@ class BPF(object):
...
@@ -831,7 +831,7 @@ class BPF(object):
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
(
path
,
addr
)
=
BPF
.
_check_path_symbol
(
name
,
sym
,
addr
)
ev_name
=
"r_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
ev_name
=
"r_%s_0x%x"
%
(
self
.
_probe_repl
.
sub
(
"_"
,
path
),
addr
)
if
ev_name
not
in
self
.
open_uprobes
:
if
ev_name
not
in
self
.
open_uprobes
:
raise
Exception
(
"
K
retprobe %s is not attached"
%
ev
ent
)
raise
Exception
(
"
U
retprobe %s is not attached"
%
ev
_name
)
lib
.
perf_reader_free
(
self
.
open_uprobes
[
ev_name
])
lib
.
perf_reader_free
(
self
.
open_uprobes
[
ev_name
])
desc
=
"-:uprobes/%s"
%
ev_name
desc
=
"-:uprobes/%s"
%
ev_name
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
res
=
lib
.
bpf_detach_uprobe
(
desc
.
encode
(
"ascii"
))
...
...
This diff is collapsed.
Click to expand it.
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