mirror of https://gitee.com/openkylin/linux.git
selftests/bpf: rename flow dissector section to flow_dissector
Makes it compatible with the logic that derives program type from section name in libbpf_prog_type_by_name. Signed-off-by: Stanislav Fomichev <sdf@google.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org>
This commit is contained in:
parent
0157edc859
commit
108d50a976
|
@ -116,7 +116,7 @@ static __always_inline int parse_eth_proto(struct __sk_buff *skb, __be16 proto)
|
|||
return BPF_DROP;
|
||||
}
|
||||
|
||||
SEC("dissect")
|
||||
SEC("flow_dissector")
|
||||
int _dissect(struct __sk_buff *skb)
|
||||
{
|
||||
if (!skb->vlan_present)
|
||||
|
|
|
@ -59,7 +59,7 @@ else
|
|||
fi
|
||||
|
||||
# Attach BPF program
|
||||
./flow_dissector_load -p bpf_flow.o -s dissect
|
||||
./flow_dissector_load -p bpf_flow.o -s flow_dissector
|
||||
|
||||
# Setup
|
||||
tc qdisc add dev lo ingress
|
||||
|
|
Loading…
Reference in New Issue