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
16408656
Commit
16408656
authored
Jan 10, 2019
by
Teng Qin
Committed by
yonghong-song
Jan 10, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix BPFModule error when RW Engine is disabled (#2131)
Fix BPFModule error when RW Engine is disabled
parent
d0deb6b2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/cc/bpf_module.cc
src/cc/bpf_module.cc
+1
-1
No files found.
src/cc/bpf_module.cc
View file @
16408656
...
...
@@ -89,7 +89,7 @@ class MyMemoryManager : public SectionMemoryManager {
BPFModule
::
BPFModule
(
unsigned
flags
,
TableStorage
*
ts
,
bool
rw_engine_enabled
,
const
std
::
string
&
maps_ns
)
:
flags_
(
flags
),
rw_engine_enabled_
(
rw_engine_enabled
),
rw_engine_enabled_
(
rw_engine_enabled
&&
bpf_module_rw_engine_enabled
()
),
used_b_loader_
(
false
),
ctx_
(
new
LLVMContext
),
id_
(
std
::
to_string
((
uintptr_t
)
this
)),
...
...
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