staging: rtl8192u: remove redundant assignment to pointer crypt
[linux/fpc-iii.git] / tools / testing / selftests / bpf / progs / test_skb_ctx.c
blob7a80960d7df134602a8f27ac6e10b1d12347ae03
1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/bpf.h>
4 #include "bpf_helpers.h"
6 int _version SEC("version") = 1;
7 char _license[] SEC("license") = "GPL";
9 SEC("skb_ctx")
10 int process(struct __sk_buff *skb)
12 #pragma clang loop unroll(full)
13 for (int i = 0; i < 5; i++) {
14 if (skb->cb[i] != i + 1)
15 return 1;
16 skb->cb[i]++;
18 skb->priority++;
20 return 0;