|
Locked
The iovisor-dev group has been locked.
This group is no longer maintained and has been locked at the request of moderator Alexei Starovoitov.
This group is no longer maintained and has been locked at the request of moderator Alexei Starovoitov.
|
By
Kenny Paul
·
#2033
·
Edited
|
|
Accessing parameters and arguments for C++ functions using uprobes
Hello All,
Just came across this old message on accessing parameters and arguments for C++
Hello All,
Just came across this old message on accessing parameters and arguments for C++
|
By
Rob Scheepens
·
#2032
·
|
|
Questions about samples/bpf/sockex3_user.c
Hello iovisor friends,
I found that there seems to be a problem in the eBPF sample source code of the Linux kernel samples/bpf/sockex3_user.c. This program contains the following code:
Hello iovisor friends,
I found that there seems to be a problem in the eBPF sample source code of the Linux kernel samples/bpf/sockex3_user.c. This program contains the following code:
|
By
yaofighting
·
#2031
·
|
|
Re: one-shot BPF program in the context of a specific PID
That's great news! I will play around with these iterators.
Thank you!
That's great news! I will play around with these iterators.
Thank you!
|
By
Andrei Matei
·
#2030
·
|
|
Re: one-shot BPF program in the context of a specific PID
yes. That's what bpf iterator of task->vma is for.
The prog doesn't need to execute "within process B" to read its memory.
I think that is exactly what you need.
The iterator can read mm of another
yes. That's what bpf iterator of task->vma is for.
The prog doesn't need to execute "within process B" to read its memory.
I think that is exactly what you need.
The iterator can read mm of another
|
By
Alexei Starovoitov
·
#2029
·
|
|
Re: one-shot BPF program in the context of a specific PID
Hi Alexei,
I'm playing around with using BPF to read a given process' memory for debugging purposes. I'd like to recreate some of the experience that a debugger gives you by stopping and ptrace-ing
Hi Alexei,
I'm playing around with using BPF to read a given process' memory for debugging purposes. I'd like to recreate some of the experience that a debugger gives you by stopping and ptrace-ing
|
By
Andrei Matei
·
#2028
·
|
|
Re: one-shot BPF program in the context of a specific PID
Could you describe what prog is going to do?
Have you considered using a task iterator parametrized with a particular task?
Could you describe what prog is going to do?
Have you considered using a task iterator parametrized with a particular task?
|
By
Alexei Starovoitov
·
#2027
·
|
|
one-shot BPF program in the context of a specific PID
Hello iovisor friends,
I'm curious what my options are for running a BPF program once, immediately, in the virtual memory context of a particular (user space) process. For example, say I want to read
Hello iovisor friends,
I'm curious what my options are for running a BPF program once, immediately, in the virtual memory context of a particular (user space) process. For example, say I want to read
|
By
Andrei Matei
·
#2026
·
|
|
Re: Print slow commit operations in nfsslower
Hi,
thank you for the reply. I'll change the code to use
RAW_TRACEPOINT_PROBE macro used in other bcc tools.
While testing on some old environments which doesn't support raw
tracepoints, I noticed
Hi,
thank you for the reply. I'll change the code to use
RAW_TRACEPOINT_PROBE macro used in other bcc tools.
While testing on some old environments which doesn't support raw
tracepoints, I noticed
|
By
TATSUKAWA KOSUKE(立川 江介)
·
#2025
·
|
|
Re: Print slow commit operations in nfsslower
<tatsu-ab1@...> wrote:
The concept and code looks okay to me. One thing is you could use
RAW_TRACEPOINT_PROBE macro to be consistent with some other
bcc tools raw tracepoint usages.
Please submit
<tatsu-ab1@...> wrote:
The concept and code looks okay to me. One thing is you could use
RAW_TRACEPOINT_PROBE macro to be consistent with some other
bcc tools raw tracepoint usages.
Please submit
|
By
Yonghong Song
·
#2024
·
|
|
Print slow commit operations in nfsslower
Hi,
I was using nfsslower in bcc tools and noticed that it doesn't print out
slow commit operations, which sometimes cause long delays in NFS writes.
I tried adding code to trace slow commit
Hi,
I was using nfsslower in bcc tools and noticed that it doesn't print out
slow commit operations, which sometimes cause long delays in NFS writes.
I tried adding code to trace slow commit
|
By
TATSUKAWA KOSUKE(立川 江介)
·
#2023
·
|
|
Re: Tracing queries within DB transactions with dbslower
Hi Kevin,
I see you've made a Github issue as well
(https://github.com/iovisor/bcc/issues/4256). That's good, as I
would've recommended making one since the mailing list isn't
frequently used these
Hi Kevin,
I see you've made a Github issue as well
(https://github.com/iovisor/bcc/issues/4256). That's good, as I
would've recommended making one since the mailing list isn't
frequently used these
|
By
Dave M
·
#2022
·
|
|
Questions about cachetop.py tool
#bcc
I have some questions about cachetop.py tool.
Why the total accesses is defined as the times of entering mark_page_accessed plus mark_buffer_dirty functions?
Doesn't enter mark_buffer_dirty must also
I have some questions about cachetop.py tool.
Why the total accesses is defined as the times of entering mark_page_accessed plus mark_buffer_dirty functions?
Doesn't enter mark_buffer_dirty must also
|
By
thesummernightcat@...
·
#2021
·
|
|
Tracing queries within DB transactions with dbslower
Hello,
as part of a university project I am analysing the dbslower tool to evaluate the performance cost of tracing the queries and to test what can be traced with it. As MySQL dropped support for
Hello,
as part of a university project I am analysing the dbslower tool to evaluate the performance cost of tracing the queries and to test what can be traced with it. As MySQL dropped support for
|
By
Kevin Maier
·
#2020
·
|
|
Parsing Non linear packet payload in TC BPF programs
Hi all,
We are parsing DHCP packets in TC egress program, In our case, the packet after the UDP header was not present in between skb->data and skb->data_end. On further investigation we found that
Hi all,
We are parsing DHCP packets in TC egress program, In our case, the packet after the UDP header was not present in between skb->data and skb->data_end. On further investigation we found that
|
By
deepankur.gupta.97@...
·
#2019
·
|
|
Re: Looking for some bcc issues for new bie
Hi, Jules,
Just go to https://github.com/iovisor/bcc/issues and you can find
quite some issues for you to investigate. Thanks!
Yonghong
Hi, Jules,
Just go to https://github.com/iovisor/bcc/issues and you can find
quite some issues for you to investigate. Thanks!
Yonghong
|
By
Yonghong Song
·
#2018
·
|
|
Looking for some bcc issues for new bie
Hi
I am looking for some bcc issues for newbie.
Any link ?
Jules
..
Hi
I am looking for some bcc issues for newbie.
Any link ?
Jules
..
|
By
Jules Irenge
·
#2017
·
|
|
LPC 2022 Networking and BPF Track CFP (Final Reminder)
This is the final reminder for the Call for Proposals (CFP) for the Networking
and BPF track at the 2022 edition of the Linux Plumbers Conference (LPC), which
is planned to be held in Dublin, Ireland,
This is the final reminder for the Call for Proposals (CFP) for the Networking
and BPF track at the 2022 edition of the Linux Plumbers Conference (LPC), which
is planned to be held in Dublin, Ireland,
|
By
Daniel Borkmann
·
#2016
·
|
|
LPC 2022 Networking and BPF Track CFP (Reminder)
This is a reminder for the Call for Proposals (CFP) for the Networking and
BPF track at the 2022 edition of the Linux Plumbers Conference (LPC), which is
planned to be held in Dublin, Ireland, on
This is a reminder for the Call for Proposals (CFP) for the Networking and
BPF track at the 2022 edition of the Linux Plumbers Conference (LPC), which is
planned to be held in Dublin, Ireland, on
|
By
Daniel Borkmann
·
#2015
·
|
|
stackcount return *blank* stack.
https://github.com/iovisor/bcc/issues/3891
I have the same issue, anyone can help me to fix it?
https://github.com/iovisor/bcc/issues/3891
I have the same issue, anyone can help me to fix it?
|
By
Ye ZhengMao
·
#2014
·
|