Check out my first novel, midnight's simulacra!

EBPF: Difference between revisions

From dankwiki
(Created page with "eBPF (Enhanced [https://en.wikipedia.org/wiki/Berkeley_Packet_Filter Berkeley Packet Filter]) is a powerful technique capable of compiling high-level languages into a BPF byte...")
 
No edit summary
Line 2: Line 2:


==Compiling eBPF==
==Compiling eBPF==
==See Also==
* [[XDP]]

Revision as of 02:59, 23 September 2019

eBPF (Enhanced Berkeley Packet Filter) is a powerful technique capable of compiling high-level languages into a BPF bytecode, which is JITted into local machine code, and can be inserted into a running kernel. It builds atop kprobes, and is in the same family of tools as SystemTap and DTrace.

Compiling eBPF

See Also