python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Unable to fetch data using bpf_map_lookup_elem()
I am trying to write a code for XDP where a user space program will populate a bpf map and then later the Kernel will look into the map. For creating the map I have added a SEC(".maps") in t...
Rishab
Votes: 0
Answers: 1
ebpf verifier fails for bpf_csum_diff()
Not able to understand why the following code fails verifier. I am doing all possible validations in this test function.
{
if (tcph + 1 > data_end)
return XDP_DROP;
tcp_len = tcph-...
user2126078
Votes: 0
Answers: 1
Multiple ebpf hooks cgroup_skb
I have basic question on ebpf behavior when multiple ebpf hooks are loaded(not using chaining) simultaneously in kernel. Are all of those hooks invoked? For example, I loaded my ebpf program which has...
Jeelani Syed
Votes: 0
Answers: 1
Sending custom data to socket using eBPF
I'm trying, finally, to understand eBPF and maybe use it in an upcoming project.
For sake of simplicity I started with reading bcc documentation.
In my project I'll need to send some data over network...
David
Votes: 0
Answers: 1