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
c366fcf2
Commit
c366fcf2
authored
Jul 21, 2015
by
4ast
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #89 from iovisor/quick_fix
Cache function handles in BPF class
parents
5e414945
53d45da1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
src/python/bpf/__init__.py
src/python/bpf/__init__.py
+3
-0
No files found.
src/python/bpf/__init__.py
View file @
c366fcf2
...
...
@@ -182,6 +182,9 @@ class BPF(object):
raise
Exception
(
"Failed to compile BPF module %s"
%
src_file
)
def
load_func
(
self
,
func_name
,
prog_type
):
if
func_name
in
self
.
funcs
:
return
self
.
funcs
[
func_name
]
if
lib
.
bpf_function_start
(
self
.
module
,
func_name
.
encode
(
"ascii"
))
==
None
:
raise
Exception
(
"Unknown program %s"
%
func_name
)
...
...
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