blob: e4d309c07a47a0b3cf2593391534d84463ca6982 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Useful commands:
# make filter
# ip link show $eth
# sudo ip link set dev $eth xdp off
# sudo ip link set dev $eth xdp obj ./bpf-kernel.o
EXTRA_DIST = bpf-kernel-obj.c bpf-kernel.c
.PHONY: filter
filter:
rm -f bpf-kernel.ll bpf-kernel.o bpf-kernel-obj.c
clang -S -target bpf -Wall -O2 -emit-llvm -c -DNDEBUG -o bpf-kernel.ll -I/usr/include/x86_64-linux-gnu -include ../../config.h bpf-kernel.c
llc -march=bpf -filetype=obj -o bpf-kernel.o bpf-kernel.ll
xxd -i bpf-kernel.o > bpf-kernel-obj.c
|