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
b7bbd04f
Commit
b7bbd04f
authored
Dec 20, 2017
by
Teng Qin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add cb_cookie to perf_reader_lost_cb
parent
d271f3e2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
src/cc/libbpf.h
src/cc/libbpf.h
+1
-1
src/cc/perf_reader.c
src/cc/perf_reader.c
+1
-1
src/lua/bcc/libbcc.lua
src/lua/bcc/libbcc.lua
+1
-1
src/lua/bcc/table.lua
src/lua/bcc/table.lua
+2
-2
src/python/bcc/libbcc.py
src/python/bcc/libbcc.py
+1
-1
No files found.
src/cc/libbpf.h
View file @
b7bbd04f
...
...
@@ -68,7 +68,7 @@ int bpf_open_raw_sock(const char *name);
typedef
void
(
*
perf_reader_cb
)(
void
*
cb_cookie
,
int
pid
,
uint64_t
callchain_num
,
void
*
callchain
);
typedef
void
(
*
perf_reader_raw_cb
)(
void
*
cb_cookie
,
void
*
raw
,
int
raw_size
);
typedef
void
(
*
perf_reader_lost_cb
)(
uint64_t
lost
);
typedef
void
(
*
perf_reader_lost_cb
)(
void
*
cb_cookie
,
uint64_t
lost
);
void
*
bpf_attach_kprobe
(
int
progfd
,
enum
bpf_probe_attach_type
attach_type
,
const
char
*
ev_name
,
const
char
*
fn_name
,
...
...
src/cc/perf_reader.c
View file @
b7bbd04f
...
...
@@ -253,7 +253,7 @@ void perf_reader_event_read(struct perf_reader *reader) {
*/
uint64_t
lost
=
*
(
uint64_t
*
)(
ptr
+
sizeof
(
*
e
)
+
sizeof
(
uint64_t
));
if
(
reader
->
lost_cb
)
{
reader
->
lost_cb
(
lost
);
reader
->
lost_cb
(
reader
->
cb_cookie
,
lost
);
}
else
{
fprintf
(
stderr
,
"Possibly lost %"
PRIu64
" samples
\n
"
,
lost
);
}
...
...
src/lua/bcc/libbcc.lua
View file @
b7bbd04f
...
...
@@ -41,7 +41,7 @@ int bpf_open_raw_sock(const char *name);
typedef void (*perf_reader_cb)(void *cb_cookie, int pid, uint64_t callchain_num, void *callchain);
typedef void (*perf_reader_raw_cb)(void *cb_cookie, void *raw, int raw_size);
typedef void (*perf_reader_lost_cb)(uint64_t lost);
typedef void (*perf_reader_lost_cb)(
void *cb_cookie,
uint64_t lost);
void *bpf_attach_kprobe(int progfd, int attach_type, const char *ev_name,
const char *fn_name, perf_reader_cb cb,
...
...
src/lua/bcc/table.lua
View file @
b7bbd04f
...
...
@@ -252,8 +252,8 @@ function PerfEventArray:_open_perf_buffer(cpu, callback, ctype, page_cnt, lost_c
local
_lost_cb
=
nil
if
lost_cb
then
_lost_cb
=
ffi
.
cast
(
"perf_reader_lost_cb"
,
function
(
lost
)
lost_cb
(
lost
)
function
(
cookie
,
lost
)
lost_cb
(
cookie
,
lost
)
end
)
end
...
...
src/python/bcc/libbcc.py
View file @
b7bbd04f
...
...
@@ -89,7 +89,7 @@ lib.bpf_attach_kprobe.restype = ct.c_void_p
_CB_TYPE
=
ct
.
CFUNCTYPE
(
None
,
ct
.
py_object
,
ct
.
c_int
,
ct
.
c_ulonglong
,
ct
.
POINTER
(
ct
.
c_ulonglong
))
_RAW_CB_TYPE
=
ct
.
CFUNCTYPE
(
None
,
ct
.
py_object
,
ct
.
c_void_p
,
ct
.
c_int
)
_LOST_CB_TYPE
=
ct
.
CFUNCTYPE
(
None
,
ct
.
c_ulonglong
)
_LOST_CB_TYPE
=
ct
.
CFUNCTYPE
(
None
,
ct
.
py_object
,
ct
.
c_ulonglong
)
lib
.
bpf_attach_kprobe
.
argtypes
=
[
ct
.
c_int
,
ct
.
c_int
,
ct
.
c_char_p
,
ct
.
c_char_p
,
_CB_TYPE
,
ct
.
py_object
]
lib
.
bpf_detach_kprobe
.
restype
=
ct
.
c_int
...
...
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